SQL DROP Statement
$count++; if($count == 1) { include "../mobilemenu.php"; } if ($count == 2) { include "../sharemediasubfolder.php"; } ?>
DROP TABLE statement is used to DELETE table, its constraints and all of its data from the database.
DROP TABLE EMPLOYEE;
The above statement will delete the EMPLOYEE table with all the data from the database.