我試圖測試此查詢是否運行。但是我輸出的是空白屏幕,即沒有輸出。我正在使用xampp服務器。當我嘗試使用mysql_query()命令運行它時,查詢未運行
<?php
$mysql_host='localhost';
$mysql_user='root';
$mysql_pass='';
$mysql_db='a_database';
$con_error='connection error';
$query="SELECT `name` FROM `users` WHERE `id`='1' "; //selecting name from databas where id is 1
$query_run=mysql_query($query); //this is my query
if($query_run)
{
echo 'success';
}
?>
請幫我這個。 $query_run
在這裏既不返回false也不是true。我無法理解問題所在。
你建立你的數據庫的連接。? –
您正在使用[an **過時的**數據庫API](http://stackoverflow.com/q/12859942/19068)並應使用[現代替換](http://php.net/manual/en/) mysqlinfo.api.choosing.php)。 – Quentin