本文介绍了在Wamp中通过PHP连接到MySQL的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我在Wampserver 2.1中开发了我的整个数据库(这是最新的设置)。但现在我无法通过Wamp中的PHP连接到MySQL。我已经搜索了很多,但仍然不知道是什么...



我尝试了一些代码组合,包括if(!)而没有已经工作了。

任何人都可以帮忙。



这是我正在尝试的当前代码返回空白页面:

Hi,
I got to develop my whole database in Wampserver 2.1 (it's the latest set). But now I cannot connect to MySQL through PHP in Wamp. I have searched a lot but still have no clue as to what is...

I have tried a number of code combination including "if(!)" and nothing has worked.
CAN ANYONE HELP PLEASE.

Here is the current code I am trying which returns blank page:

$mysql_hostname="localhost";

$mysql_database="naveena";

$bd=mysql_connect($mysql_hostname) or die('DB not Connected');

if(!$bd)
{
echo "Localhost not connected";
}

mysql_select_db($mysql_database,$bd);
if(!mysql_select_db($mysql_database,$bd))
{
echo "DB not connected";
}
?>

推荐答案




这篇关于在Wamp中通过PHP连接到MySQL的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 15:03