麻烦各路PHP高手回答一下!该怎么解决

WBOY
發布: 2016-06-13 10:25:54
原創
801 人瀏覽過

麻烦各路PHP高手回答一下!
$serverLink = @mysql_connect("localhost","root","")or die("连接服务器失败!程序中断执行!");
mysql_query("set names'gbk'");
$dbLink = @mysql_select_db("student",$serverLink)or die("当前连接服务器失败!程序中断执行!");
if($dbLink){
echo"选择student数据库为当前数据库!";
}
$close = @mysql_close($serverLink);
?>
当我运行这个程序时,页面显示的总是("当前连接服务器失败!程序中断执行!");而我想页面显示"选择student数据库为当前数据库!";
该怎么办?


------解决方案--------------------
$serverLink = mysql_connect("localhost","root","") or die(mysql_error());
mysql_query("set names'gbk'");
$dbLink = mysql_select_db("student",$serverLink) or die(mysql_error());

这样程序就会告诉你错在哪了。

------解决方案--------------------
你上个问题问的比这个具体。我看你说的是把student作为数据表建立的 ,那么就意味着根本不存在student数据库。所以先CREATe DATABASE student吧。请登录PHPMYADMIN查看下详细内容吧。

如果真的是有数据库student存在,[email protected],让系统报详细sql错误吧。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!