我收到此錯誤:我得到的錯誤,當我打開我的登錄頁面監守我的SQL查詢功能的
Warning: mysqli_query() expects parameter 1 to be mysqli, string given in C:\xampp\htdocs
我的代碼:
function dbQuery($sql)
{
$result = mysqli_query($sql) or die(mysqli_connect_error());
return $result;
}
錯誤說明了這一切,看看手冊。此外'mysqli_connect_error'用於連接錯誤。使用http://php.net/manual/en/mysqli.error.php。 – chris85