!!!problem!!!

admin

Administrator
Staff member
i wrote below code and the output says "Connected to serverAccess denied for user: <!-- e --><a href="mailto:'[email protected]">'[email protected]</a><!-- e -->' to database 'messageboard' "..on linux ??? what does it mean ??? is something wrong with this code or anyother problem?? please help me..i had put my password,user name and database name on connect.php.
thankz

<?
include("./connect.php");


$result= mysql_query("create database $db");
if(!$result)
{
print mysql_error();
exit();
}
else
{
print("Database created");
}
?>
 
Top