include('admin/config.php');
if ($azione=="") {
//if ($offline=="si") {
$sql="SELECT * FROM forum_messaggi ORDER BY data DESC;";
//} else {
// $sql="SELECT * FROM forum_messaggi ORDER BY data DESC LIMIT 0, 2;";
//}
if(!($result=mysql_query($sql,$conn))) {
echo ("Errore SQL nella tabella forum_messaggi .\n");
} else {
?>
Messaggi presenti nel forum:
while ($datarecord=mysql_fetch_array($result)) {
$temp_mesi=array(1 => "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto", "Settembre", "Ottobre", "Novembre", "Dicembre");
?>
:
inviato da
}
?>
}
} elseif ($azione=="accesso") {
$sql="SELECT nome, password FROM forum_utenti WHERE nome='".$utente."' AND password='".$password."';";
if(!($result=mysql_query($sql,$conn))) {
echo ("Errore SQL nella tabella forum_utenti .\n");
} else {
if (mysql_num_rows($result)>0 && $utente!="" && $password!="") {
$utente_corrente=$utente;
?>
} else {
?>
}
}
} elseif ($azione=="iscrizione") {
//$data=date("Y-m-d");
$data=date("YmdHi");
$sql="INSERT INTO forum_utenti (iscrizione, nome, password, email) VALUES ('$data', '$utente', '$password', '$email');";
if(!mysql_query($sql,$conn)) {
echo ("Errore SQL nella tabella forum_messaggi .\n");
} elseif ($utente=="" && $password=="") {
?>
Iscrizione non consentita con questi dati.
} else {
$utente_corrente=$utente;
?>
}
} elseif ($azione=="nuovo") {
//# guarda se l'utente e' gia' attivo
if ($utente_corrente=="") {
//# proponi il login
?>
} else {
//#visualizza la schermata di immissione messaggio
?>
}
} elseif ($azione=="aggiunta") {
//$data=date("Y-m-d");
$data=date("YmdHi");
$sql="INSERT INTO forum_messaggi (data, nome, titolo, testo) VALUES ('$data', '$utente_corrente', '$titolo', '$testo');";
if(!mysql_query($sql,$conn)) {
echo ("Errore SQL nella tabella forum_messaggi .\n");
} else {
//echo "OK\n";
?>
}
}
mysql_close($conn);
?>