Porque no me crea la tabla
$crear="CREATE TABLE IF NOT EXISTS $tabla (";
$crear.="Contador TINYINT UNSIGNED ZEROFILL not null AUTO_INCREMENT,";
//$crear.="Numero TINYINT UNSIGNED ZEROFILL not null ,";
//$crear.="Numero1 TINYINT UNSIGNED not null DEFAULT 3, ";
$crear.="Nombre VARCHAR (15) DEFAULT '' not null,";
$crear.="Direccion VARCHAR (25) DEFAULT '' not null,";
$crear.="Cualidades SET ('Id'))";
Si pongo "Cualidades SET ('Id'))": me hace el registro pero si la nulo la linea no me la crea, y en AUTO_INCREMENT si lo añado no me ladeja crear.