|
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 and its related FAQ entry for additional information. 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 DROP DATABASE statement instead. Parameters
Return Values
Returns Examples
Example #1 mysql_drop_db alternative example
<?php NotesWarning
This function will not be available if the MySQL extension was built against a MySQL 4.x client library.
See Also
|