blob: 7ddfcfc07c1fcb255d112100797fcb2d5d21bc6a [file] [log] [blame]
<?php
require_once("/home/data/httpd/eclipse-php-classes/system/dbconnection_dashboard_rw.class.php");
require_once($_SERVER['DOCUMENT_ROOT'] . "/projects/stats/hostname.php");
$dbc = new DBConnectionDashboard();
$dbh = $dbc->connect();
echo "<html><body>";
$query = "DROP TABLE ".log_table();
echo $query."<br>";
mysql_query($query,$dbh) or die("Could not drop table: ".mysql_error()."\n");
echo "</body></html>";
$dbh = null;
$dbc = null;
?>