blob: ca5f2d609a61526a34b13898f32c76a03c48556e [file] [log] [blame]
<?php
require '../credentials.php';
require '../php/utils.php';
$dbname = $_GET['dbname'];
$create = "CREATE TABLE `".$dbname."` (
`id` int(11) NOT NULL PRIMARY KEY AUTO_INCREMENT,
`nom` varchar(100) CHARACTER SET utf8 COLLATE utf8_spanish_ci NOT NULL,
`curs` tinyint(1) NOT NULL,
`grau` tinyint(1) NOT NULL,
`quimata` int(11) NOT NULL,
`requested` tinyint(1) NOT NULL DEFAULT 0,
`mort` tinyint(1) NOT NULL DEFAULT 0,
`password` varchar(100) NOT NULL DEFAULT ''
)";
/*
CREATE TABLE `morts` (
`id` int(11) NOT NULL,
`quimatava` int(11) NOT NULL,
`assassi` int(11) NOT NULL,
`curs` tinyint(1) NOT NULL,
`grau` tinyint(1) NOT NULL,
`data` date NOT NULL DEFAULT current_timestamp()
)
*/
if (query($create)) die("<script>window.location.href = './index.php?dbname=".$dbname."'<script>");
?>