<?php$conn=mysql_connect("localhost","phpdb","phpdb")
        or die("不能连接数据库服务器: ".mysql_error());   // line 1mysql_select_db("test",$conn) or die ("不能选择数据库: ".mysql_error()); // line 2$result = mysql_query("SELECT * FROM user",$conn); // line 3Print "Connect to MySQL database sucessfully!"; // line 4echo "<br>"; // line 5
echo "<br>"; // line 6while($row=mysql_fetch_row($result)){ // line 7print "Name:".$row[1]; // line 8print " Address:".$row[3]; // line 9print " Tel:".$row[4]; // line 10print " Email:".$row[5]; // line 11echo "<br>"; // line 12
} // line 13
?>
Fatal error: Call to undefined function mysql_connect() in F:\php\10-1.php on line 2