Account $del erfolgreich gelöscht !
"; include ("footer.inc"); } function deladserver() { global $table_accounts, $table_banner, $table_groups, $table_stats; $sql = "drop table $table_accounts"; mysql_query($sql); $sql = "drop table $table_banner"; mysql_query($sql); $sql = "drop table $table_groups"; mysql_query($sql); $sql = "drop table $table_stats"; mysql_query($sql); $sql = "create table $table_accounts (adserver TINYINT not null )"; mysql_query($sql); $sql = "create table $table_banner (adserver TINYINT not null )"; mysql_query($sql); $sql = "create table $table_groups (adserver TINYINT not null )"; mysql_query($sql); $sql = "create table $table_stats (adserver TINYINT not null )"; mysql_query($sql); $handle = opendir('.'); while($file = readdir($handle)) { if($file != "." && $file != "..") { unlink($file); } } } ?>