hi,
i have a php script like this for connecting to database mysql
$connection=mysql_connect($host,$user,$password)
//$mysql_link = mysql_connect("localhost", "root", "");
// mysql_select_db("test")
or die("Could not connect to server");
$db=mysql_select_db($database,$connection)
or die("could not select database");
i have already define host,user and password.
when i run my php page i get a error like this
Warning: mysql_connect(): Host 'localhost' is not allowed to connect to this MySQL server in c:\program files\easyphp1-8\www\test\config.inc.php on line 7
wht cd be the problem?
-gthri