ho provato a creare una tabella e inserire i dati in un altra tabella ma non va! ecco l'intero codice:
PHP:
?php
$rnome=$_POST['rnome'];
$rpass=$_POST['rpass'];
$rpokemon=$_POST['rpokemon'];
$rmail=$_POST['rmail'];
$connessione=mysql_connect("localhost","pkmnaction","****");
$cercanome=mysql_query("SELECT `Nome` FROM `my_pkmnaction`.`utenti` WHERE `Nome` = '".$rnome."'",$connessione);
$cercamail=mysql_query("SELECT `Mail` FROM `my_pkmnaction`.`utenti` WHERE `Mail` = '".$rmail."'",$connessione);
$risnome=mysql_result($cercanome,0);
$rismail=mysql_result($cercamail,0);
if ($rnome!="") { if ($rpass!="") { if ($rpokemon!="") { if ($rpokemon!="domanda") { if ($rpokemon!="no") { if ($rmail!="") { if ($rnome!=$risnome) { if ($rmail!=$rismail) {
$query=mysql_query("INSERT INTO `utenti` (`Nome` ,`Password` ,`Mail` ,`Soldi` ,`Pokemon1` ,`Poke Ball` ,`Pozione`) VALUES ('".$rnome."', '".$rpass."', '".$rmail."', '2000', '".$rpokemon."', '5', '1')",$connessione);
$creatab=mysql_query("CREATE TABLE `us-".$rnome."` (`Id` INT( 4 ) NOT NULL AUTO_INCREMENT PRIMARY KEY , `Nome` VARCHAR( 20 ) NOT NULL,`Livello` INT( 10 ) NOT NULL,`Ps` INT( 10 ) NOT NULL ,`Ps Max` INT( 10 ) NOT NULL,`Exp` INT( 10 ) NOT NULL,`Exp Max` INT( 10 ) NOT NULL,`Atk` INT( 10 ) NOT NULL, `Def` INT( 10 ) NOT NULL, `Mossa1` VARCHAR( 20 ) NOT NULL, `Toglie1` INT( 10 ) NOT NULL, `Mossa2` VARCHAR( 20 ), `Toglie2` INT( 10 ), `Mossa3 VARCHAR( 20 ), `Toglie3` INT( 10 ), `Mossa4` VARCHAR( 20 ), `Toglie4` INT( 10 )) ",$connessione);
$cercaid=mysql_query("SELECT `Id` FROM `my_pkmnaction`.`utenti` WHERE `Nome` = '".$rnome."' AND `Password` = '".$rpass."'",$connessione);
$risid=mysql_result($cercaid,0);
// INIZIO MESSAGGIO
$boundary = "==Boundary_".md5(time());
$header = "MIME-Version: 1.0\n";
$header .= "Content-Type: multipart/alternative;\n";
$header .= " boundary=\"$boundary\";\n\n";
// Parte del messaggio solo testo
$msg = "--$boundary\n";
$msg .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n";
$msg .= "Content-Transfer-Encoding: 7bit\n\n";
$msg .= " Ciao, ".$rnome."!\n Grazie per esserti registrato su Pokemon action!\n\n I tuoi dati di Login sono:\n Nome: ".$rnome."\n Password: ".$rpass."\n Clicca il link sottostante per confermare la registrazione:\n http://pkmnaction.altervista.org/conferma.php?id=".$risid."\n\n\n Se non ti sei registrato tu, conferma l'account, connettiti con i dati soprastanti, vai su Profilo e cancella l'account.\n\n\n Lo staff di Pokemon Action ti ringrazia.\n\n\n http://pkmnaction.altervista.org\n\n";
// Parte del messaggio HTML
$msg .= "--$boundary\n";
$msg .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
$msg .= "Content-Transfer-Encoding: 7bit\n\n";
$msg .= "Ciao ".$rnome."!<br>Grazie per esserti registrato su <a href='http://pkmnaction.altervista.org'>Pokemon Action</a>!<br>I tuoi dati di Login sono:<br>Nome: ".$rnome."<br>Password: ".$rpass."<br><br>
<a href='http://pkmnaction.altervista.org/conferma.php?id=".$risid."'>Clicca qui per confermare la registrazione!</a><br><br><br>Se non ti sei registrato tu, conferma l'account, connettiti al sito con i dati soprastanti, vai su Profilo e cancella l'account.<br><br><br><br>Lo staff di <a href='http://pkmnaction.altervista.org'>Pokemon Action</a> ti ringrazia.\n";
$oggetto="Registrazione su Pokemon Action";
$msg .= "--$boundary--\n";
// FINE MESSAGGIO
mail($rmail,$oggetto,$msg,$header);
}
else {
echo "Questa Mail è gia stata usata!";
}
}
else {
echo "Questo Nome è gia stato usato!";
}
}
else {
echo "Devi compilare tutti i campi! Non hai compilato la Mail!";
}
}
else {
echo "Devi compilare tutti i campi! Non hai scelto un Pokemon!";
}
}
else {
echo "Devi compilare tutti i campi! Non hai selezionato un Pokemon!";
}
}
else {
echo "Devi compilare tutti i campi! Non hai selezionato un Pokemon!";
}
}
else {
echo "Devi compilare tutti i campi! Non hai compilato la Password!";
}
}
else {
echo "Devi compilare tutti i campi! Non hai compilato il Nome!";
}
Ultima modifica: