Originally Posted by root@localdomain
can you post your script?
Im gonna give u a basicscript how you can check if your database is accessible.
<?php
$db_host = "localhost";
$db_username = "root";
$db_password = "";
$err= "Fault while connecting!";
$db_connectie = mysql_connect($db_host, $db_username, $db_password) or die($err); // connect to database, if fail -> show error
?>
Try this script and fill in the good values for $db_host $db_username and $db_password. I think if u didn't change anything the standard password for the user "root" is "" (empty).
The useraccounts from mysql have nothing to do with those from anything else.
Try this. If u can login with the username "root" and password "", you can then configure your phpMyAdmin. After that you can access your database and add users. IMPORTANT!!! Be shure to change the password for the root account. And change the settings in the config file of phpMyAdmin.
Further... Dont let your scripts use the root account. Its very unsafe.
I hope this helps.