database not created!!

admin

Administrator
Staff member
i wrote below code and the output says connected to server but database not created ..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("database not created.");
exit();
}
else
{
print("Database created");
}
?>
 
Back
Top