|
mysql_drop_dbDrop (delete) a MySQL database Warning
This function was deprecated in PHP 4.3.0, and it and the entire original MySQL extension was removed in PHP 7.0.0. Instead, use either the actively developed MySQLi or PDO_MySQL extensions. See also the MySQL: choosing an API guide. Alternatives to this function include:
Description
bool mysql_drop_db(string
$database_name , resource $link_identifier = NULL)
mysql_drop_db attempts to drop (remove) an
entire database from the server associated with the specified
link identifier. This function is deprecated, it is preferable to use
mysql_query to issue an sql
Parameters
Return Values
Returns Examples
Example #1 mysql_drop_db alternative example
NotesWarning
This function will not be available if the MySQL extension was built against a MySQL 4.x client library.
See Also
|