mirror of
https://github.com/jcreek/Assassins-Mission-Control.git
synced 2026-07-13 11:03:43 +00:00
9697849acf
Admin users can now create the users table (means whoever sets up the site only needs to create a database then non-tech admin users can continue from there), close registration and start the game.
11 lines
286 B
PHP
11 lines
286 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");
|
|
?>
|