AJAXBot/www/jews.php
2014-07-11 16:03:57 -05:00

15 lines
318 B
PHP

<?php
include("conn.php");
if(!$_GET["do"]) {
session_start();
session_destroy();
header("Location: index.php");
} else {
if($_GET["do"] = "cerrs") {
mysql_query("TRUNCATE `error`");
mysql_query("ALTER TABLE `error` AUTO_INCREMENT=1");
header("Location: index.php");
}
}
?>