in una pagina c'è questo..
$sql = mysql_query("
CREATE TABLE $nome (
id int(25) NOT NULL default '$vita',
) TYPE=MyISAM;");
come metto che prima controlla se c'è gia, poi se esiste gia la elimina e la ricrea, mentre se non esiste la crea e basta?
in una pagina c'è questo..
$sql = mysql_query("
CREATE TABLE $nome (
id int(25) NOT NULL default '$vita',
) TYPE=MyISAM;");
come metto che prima controlla se c'è gia, poi se esiste gia la elimina e la ricrea, mentre se non esiste la crea e basta?
ins't anyone here?
prima la fai cancellare se esiste:
poi la crei con la stringa che hai postato tuDROP TABLE IF EXISTS 'nometabella'
There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...
ho provato a inserire
$elimina = mysql_query("DROP TABLE IF EXISTS '$nome'");
ma non funge!
che errore ti da?
There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...
nessuno... semplicemente non elimina la tabella!
ho provato a mettere:
if ($elimina) {
echo "Ciao";
} else {
echo "Mignottone";
}
e compare mignottone!
nessun errore????
no..
devi fare
echo mysql_error();
dopo aver lanciato la query...
There are three kinds of people in this world: people who watch things happen ... people who complain about things that happen ... and people who make things happen...
mi dice questo:
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'EXIST 'Gorg'' at line 1