大家好我想使用下面給出的代碼在我的網站上顯示數據庫,但它一次又一次地給我帶來惱人的錯誤。我曾嘗試一切,但沒有什麼工作是給我同樣的錯誤通知簡單的代碼不起作用
這裏是錯誤注意
Notice: Undefined index: name in C:\xampp\htdocs\test3\index.php on line 15
這裏是PHP代碼
<?php
$connect = mysql_connect("localhost","root","123");
if(!$connect) {
die("Failed to Connect: " . mysql_error());
}
if (!mysql_select_db ("login")){
die("Failed to Select DB: ". mysql_error());
}
$results = mysql_query ("Select * from users ");
while($row = mysql_fetch_array($results)){
echo $row['name'];
}
?>
我也試過用mysqli_fetch_assoc($result)
替換mysql_fetch_array($results)
,它也不能正常工作,請自行運行此代碼,然後將該代碼提供給我。由於
'用戶'表中是否存在'name'列? –
mysql_fetch_array返回什麼?確保數據庫具有表格用戶 –
一次print_r($ row);並向我們展示結果 – vijaykumar