| <?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(); | |
| $query = "DELETE FROM ".stats_table(); | |
| echo $query; | |
| mysql_query($query,$db_handle) or die("Could not delete: ".mysql_error()."\n"); | |
| $db_handle = null; | |
| $db_connection = null; | |
| ?> |