我创造了'你好''使用phpMyAdmin和student表的数据库。现在,以下代码无效,尽管完全正确。
<?php
$conn=mysqli_connect('localhost','divyang','','hello');
$a=mysql_select_db('hello',$conn);
echo "<br>";
if (!$a) {
die('Could not connect: ' . mysql_error());
}
$query="SELECT * FROM `student`";
$result=mysqli_query($query,$conn);
while($row=mysqli_fetch_array($result)){
echo "".$row["name"]." ".$row["surname"]."<br>";
}
?>
此代码只是表示无法连接&#39;回答。它没有给予任何其他回报。