mysql_drop_db()
bool mysql_drop_db(database[,connection])
Use this function to delete the database given from the
MySQL server. A different connection identifier may be given as a
second argument. This function returns true if it’s successful, and
false if it’s unsuccessful. This function has been deprecated; use the
mysql_query() function with a DROP
DATABASE statement instead. Here is an example:
...
mysql_dropdb('old_db');
...