Are you issuing the MySQL command within a PHP page or within the MySQL console? If you want to make a database using PHP, the function is mysql_create_db("NAME"). You have to have a valid mysql connection open. mysql_connect(host, user, password);
Replace the values with your own and you should be ready to go.