<?php

include('config.php');

$result = mysql_query( "SELECT * FROM tables_lf2713" );
while($row = mysql_fetch_array( $result )) {
$table = $row['tname'];
mysql_query( "DROP TABLE $table" );
					   }

include('database_disconnect.php');

echo "Uninstallation Was Successful!";

?>