mirror of
https://github.com/jcreek/Assassins-Mission-Control.git
synced 2026-07-12 18:43:43 +00:00
12 lines
331 B
PHP
12 lines
331 B
PHP
<?php include "../base.php";
|
|
|
|
// Copy the contents of the table 'users' into 'users-final'
|
|
//mysql_query("SELECT * INTO usersfinal FROM users");
|
|
|
|
//Error checking should go here but I couldn't be bothered to do it yet.
|
|
|
|
|
|
|
|
mysql_query("CREATE TABLE usersfinal SELECT * FROM users");
|
|
?>
|
|
<?php include "return-to-admin-page.php"; ?>
|