Drop a table from a database with PHP MySqli

If you want to Drop a table from a database with PHP MySqli you must make sure that the table is there in the first place. If you have not done so please see Create a New Table in a MySqli Database.  To drop a table use the following code. You must make sure of the following requirements.

  1. You Created A Database
  2. You Granted Privileges to the database
  3. Created a config.php file to access the database

The following code will drop a database called “MyDb” so you will have to be sure to adjust the code to match the table that you want to drop in your database. 😉

[code]include(‘config.php’);
// Create connection
$con = new mysqli($host, $username, $password, $dbname);
$con ->query("DROP TABLE myDb");
$con ->close();[/code]

If you want more detailed explanations on dropping a database see the php site. 

Only cool people share!

Drop a table from a database with PHP MySqli was last modified: October 18th, 2015 by Maximus Mccullough
Summary
Drop a table from a database with PHP MySqli
Article Name
Drop a table from a database with PHP MySqli
Description
If you want to Drop a table from a database with PHP MySqli you must make sure that the table is there in the first place.
Author
Drop a table from a database with PHP MySqli

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.