Phpmyadmin error

hi,
i am new to php and i’ve been tryin to write some programs using wamp server,but when i tried to access my phpmyadmin i keep gettin this error

Error
MySQL said:

#1045 - Access denied for user (using password: NO)

phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server

pls how do i go about it?
thanks

the error means you are not passing a password at all.

Ensure that you have typed in the correct mysql username and password.
Also, you may open this file “phpmyadmin/config.inc.php” where you can see the default username and password (admin/password)

/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'admin';
$cfg['Servers'][$i]['password'] = 'password';

You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server

:smiley: