我无法连接到我的MySQL服务器。但我不认为这是一个错误

时间:2015-02-14 21:27:58

标签: phpmyadmin

我在家里和工作中做我的项目。虽然我只是使用闪存驱动器,以便在需要时随时更新。在我的笔记本电脑上,没有MySQL密码,但在我的工作中有。

这是我的连接字符串

<?php
    $host="localhost";
    $user="root";
    $pass="";
    $db="librarydb";

    global $con;
    $con = mysql_connect($host, $user, $pass) or die ("Connection could not be made to the SQL Server.");
    mysql_select_db($db) or die ("Connection could not be made to the database.");
?>

我现在这样做了5次,我不知道发生了什么。 这是它给我的错误

Warning: mysql_connect(): Access denied for user 'root'@'localhost' (using password: NO) in C:\xampp\htdocs\OCatalog\admin\db_connection.php on line 8
Connection could not be made to the SQL Server.

但是在我的phpmyadmin中,在最下面的部分它给了我一些警告

 The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated. To find out why click here.

我确信每当我去上班时,我只是填写密码,然后每当我回家时将其删除,以便我可以使用它,就在今天。

0 个答案:

没有答案