-1

我在 Windows 7 计算机(64 位)上使用 XAMMP、PHPMyAdmin、Notepad++。

我正在尝试使用本教程为我的网站创建一个登录页面:http: //net.tutsplus.com/tutorials/php/create-a-signup-form-with-email-confirmation/

但是,我收到此错误:

警告:mysql_connect():第 4 行 ...\XAMPP\htdocs\EP\inc\php\config.php 中的用户 'username'@'localhost' 的访问被拒绝(使用密码:YES)我无法连接到您的数据库,请确保您的信息是正确的!

这是我的代码:

//connect to the database
mysql_connect('localhost', 'username', 'password') or die("I couldn't connect to your database, please make sure your info is correct!");
mysql_select_db('registration') or die("I couldn't find the database table ($table) make sure it's spelt right!");

我完全不知道用户名和密码应该是什么意思,我不确定“本地主机”是否应该是我的 IP。

4

1 回答 1

0

尝试这样放置数据:

mysql_connect ('localhost', 'root','') or die ("here you put whatever you want");

通常这是默认访问。

于 2013-10-27T03:31:54.580 回答