blob: b26d2b90974a51ce70ab15489f6c3a555f4833d4 [file] [log] [blame]
<?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;
?>