Files
Assassins-Mission-Control/admin-tools/close-registration.php
T
jcreek 9697849acf 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.
2014-08-21 19:05:09 +01:00

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");
?>