| <?php | |
| require_once "/home/data/httpd/eclipse-php-classes/system/dbconnection_dashboard_rw.class.php"; | |
| require_once "hostname.php"; | |
| $db_connection = new DBConnectionDashboard(); | |
| $db_handle = $db_connection->connect(); | |
| echo "<html><body>"; | |
| $query = "DROP TABLE ".stats_table(); | |
| echo $query."<br>"; | |
| mysql_query($query,$db_handle) or die("Could not drop table: ".mysql_error()."\n"); | |
| echo "</body></html>"; | |
| $db_handle = null; | |
| $db_connection = null; | |
| ?> |