Codice PHP:
<?
if ($nome_mittente != "" && $messaggio != "" && $email_mittente !="")
{
// creazione query
$query = "INSERT INTO commenti
( Id_progetto , Commento , Autore , Email , Data )
VALUES ( '$id','$messaggio','$nome_mittente','$email_mittente','$data'); ";
}
else
{
// termina la lettura della pagina
die("
Occorre compilare tutti i campi. [url='commento.php?Id=$id&categoria=$categoria&Pag=$pag']Riprova[/url]");
}
// ESEGUO LA QUERY
if ( mysql_query($query) )
{
// SE LA QUERY VA A BUON FINE TORNO ALLA PRIMA PAGINA
echo "query eseguita";
header("Refresh:3;url=prima.php");
// ALTRIMENI TORNO ALLA SECONDA
}
else
{
echo "errore nell' inserimento nel db";
header("Refresh:3;url=seconda.php");
}