and again maybe im been dumb or not seeing something I should but I am having a problem making a table in MySQL using a php script here is the code
$maketable = "CREATE TABLE IF NOT EXISTS $scompany (
id INT(11) NOT NULL AUTO_INCREMENT,
deskname VARCHAR(255) NOT NULL,
lfloor VARCHAR(255) NOT NULL,,
internet ENUM('y','n') NOT NULL DEFAULT 'n',
pc ENUM('y','n') NOT NULL DEFAULT 'n',
monitor ENUM('y','n') NOT NULL DEFAULT 'n',
extra TEXT NULL,
PRIMARY KEY (id))";
$tablequery = mysqli_query($db_x, $maketable);
but for some reason it wont work can you help please
$tablequery = mysqli_query($db_x, $maketable) or die(mysqli_error($db_x));to see it