blob: 027788c444cc9d565d1fbc49f6aa0c0d166bb00b [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 ''
)";
if (query($create)) header("Location: ./index.php?dbname=".$dbname);
?>