I am using phpMyadmin as a database and I can't drop the tables ...how to spot the syntax error?
<?php
include 'dbconnect.php'; //connect to DB
//Droping The tables
$dropping = @mysql_query('DROP TABLE IF EXISTS rents, criticise, writesIn, writenIn, translated, reads, worksIn, inStock, playsIN, store, genre, employee, newspaper, customer, critic, language, actor, film, city ;');
if (!$dropping) {
exit('<p>Error dropping the tables<br />'.
'Error: ' . mysql_error() . '</p>');
}
if ($dropping) {
echo 'everything went just fine dropping the tables<br>';
}