我已经创建了一个php脚本来访问我的数据库......据我所知,所有登录详细信息都是正确的但我收到此错误消息:用户'a5247024_thesps'@'10.1.1.36'访问被拒绝到数据库'maininf'
<?php
// Make a MySQL Connection
mysql_connect("mysql11.000webhost.com", "a5247024_thesps", "******") or die(mysql_error());
mysql_select_db("maininf") or die(mysql_error());
// Retrieve all the data from the "maininf" table
$result = mysql_query("SELECT * FROM maininf")
or die(mysql_error());
// store the record of the "maininf" table into $row
$row = mysql_fetch_array( $result );
// Print out the contents of the entry
echo "Name: ".$row['PUA_Name'];
?>
Run Code Online (Sandbox Code Playgroud)
有人可以帮忙吗?非常感谢.
您显然可能会将表名与数据库名混淆.除非这两个表格和数据库被称为maininf,您的呼叫mysql_select_db()可能需要不同的字符串作为数据库的实际名称,而不是表名.
// Your database name may not be the same as your table name!
// Substitute the correct value in place of maininf here
mysql_select_db("maininf") or die(mysql_error());
// Retrieve all the data from the "maininf" table
$result = mysql_query("SELECT * FROM maininf")
or die(mysql_error());
Run Code Online (Sandbox Code Playgroud)