我初学php,我用PHP 连接wamp5中的mysql,在php中输入了以下函数,结果浏览器打开网页显示空白??
<?php$dbcnx=@mysql_connect("localhost","root","");if(!$dbcnx){echo("<P>Unabletoconnec...
<?php
$dbcnx=@mysql_connect("localhost","root","");
if(!$dbcnx){
echo("<P>Unable to connect to the "."database server at this time.</p>");
exit();
}
mysql_select_db("shujuku3",$dbcnx);
if(!@mysql_select_db("shujuku3")){
echo ("<P>Unable to locate the school"."database at this time.</P>");
exit();
}
$result=mysql_query("SELECT * FROM biao3");
?> 展开
$dbcnx=@mysql_connect("localhost","root","");
if(!$dbcnx){
echo("<P>Unable to connect to the "."database server at this time.</p>");
exit();
}
mysql_select_db("shujuku3",$dbcnx);
if(!@mysql_select_db("shujuku3")){
echo ("<P>Unable to locate the school"."database at this time.</P>");
exit();
}
$result=mysql_query("SELECT * FROM biao3");
?> 展开
展开全部
你的代码并没有输出任何内容,所以返回空白是正常的,你的$result只是赋值,并没有输出
追问
请问我想让mysql的数据表显示在浏览器上怎么显示,刚才按你说的输出了那个变量,显示的结果是 Resource id #3 是什么意思??
追答
当mysql_query成功时返回一个资源id,你需要获取数据表内容,需要其他函数来操作这个资源ID,请参考下面这个官方手册中的例子。
http://php.net/manual/zh/function.mysql-fetch-array.php
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询