mirror of
https://github.com/jcreek/Assassins-Mission-Control.git
synced 2026-07-13 02:53:44 +00:00
Begun adding the full admin backend
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.
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
<?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");
|
||||
?>
|
||||
Reference in New Issue
Block a user