$link = mysql_connect('localhost', $username, $password);
if (!$link) 
{
     die('Could not connect: ' . mysql_error());
}

I get this error:

Could not connect: Access denied for user 'www-data'@'localhost' (using password: NO)

Why?

Edit:

$username="root";
$password="root";
$database="test";

    function Save($name)
    {
        $link = mysql_connect('localhost', $username, $password);
        if (!$link) {
            die('Could not connect: ' . mysql_error());
        }
        @mysql_select_db($database) or die( "Unable to select database");
        $query = "INSERT INTO test (name)" .
                 "VALUES ('" . $name . "')";
        mysql_query($query);
        mysql_close();
    }
link|improve this question

60% accept rate
2  
You have two correct answers below. Make sure you use error_reporting set to E_ALL | E_STRICT and display_errors set to On (or at least logged to a file) on your development server. It will help for this kind of things. – netcoder Nov 2 '10 at 23:16
feedback

5 Answers

up vote 1 down vote accepted

From your edit, the issue appears to be a scoping one.

You're attempting to make a connection inside a function where the $username, $password and $database variables are defined outside that function.

I suggest you read the Variable Scope section of the manual and turn up your error reporting as @netcoder suggests in the question comments.

link|improve this answer
You were right. – slandau Nov 3 '10 at 1:35
feedback

Did you give $username and $password values? Something like this?

$username="root";
$password="";
link|improve this answer
I gave them values. – slandau Nov 2 '10 at 23:21
@slandau: Could you show us the code? Or are "www-data" the username and "" the password? – thejh Nov 2 '10 at 23:29
Edited...code above – slandau Nov 2 '10 at 23:36
feedback

Your $password variable is empty ((using password: NO)) then you trying log into www-data user without password, and server result is access denied. Propably this user have setted password.

link|improve this answer
1  
www-data is what Apache in some distros runs under, so the $username seems to be empty as well. – Quassnoi Nov 2 '10 at 23:16
I set both values in my code. – slandau Nov 2 '10 at 23:22
feedback

I think the problem is that, you are trying to connect to the database twice. Somewhere in your code, you are already trying to connect to the database with username as "www-data"...... and again you are connecting to the database with username "root".

Also the password you are providing with the username "www-data" is wrong, thats y you getting the error message.

link|improve this answer
feedback
$username="root";
$password="root";
$database="test";

    function Save($name)
    {
        global $username;
        global $password;
        global $database;

        $link = mysql_connect('localhost', $username, $password);
        if (!$link) {
            die('Could not connect: ' . mysql_error());
        }
        @mysql_select_db($database) or die( "Unable to select database");
        $query = "INSERT INTO test (name)" .
                 "VALUES ('" . $name . "')";
        mysql_query($query);
        mysql_close();
    }
link|improve this answer
PHP globals are the devil! – Phil Nov 3 '10 at 5:36
but I m not, the answer is correct I think – g.b.1981 Nov 3 '10 at 6:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.