1. 程式人生 > >PHP mysqli_query() 函式

PHP mysqli_query() 函式

1.mysqli_query() 函式執行某個針對資料庫的查詢。

用法:mysqli_query(connection,query,resultmode);

connection   必需。規定要使用的 MySQL 連線。

query           必需,規定查詢字串。

2.mysqli_num_rows() 函式返回結果集中的數量。

用法:mysqli_num_rows(result);

result          必需。規定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的結果集識別符號。