salve io ho inserito nel mio sito questa pagina per aggiungere commenti ma c'e qualcosa che nn funziona secondo voi cosč?
la pagina č questa:
http://www.ciberioegiro.altervista.org/commenti.php
il codice č questo:
Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="it">
<?php include("configuratoriphp/head.php")?>
<body>
<div id="container">
<?php include("configuratoriphp/header.php")?>
<?php include("configuratoriphp/colsx.php")?>
<div id="coldx">
<form action="<?php echo $_SERVER['PHP_SELF'];?>" method="post">
<label>Inserisci il tuo commento qui:<textarea name="commento" rows="10" cols="40"></textarea>
</label> <br />
<input type="submit" value="Conferma">
</form>
</div>
<?php include("configuratoriphp/footer.php")?>
<?php
//inseriamo le variabili
$server = "localhost" ;
$nomeutente = "" ;
$password = "" ;
$database = "" ;
$tabella = "commenti" ;
//verifichiamo la conferma
if (isset($_POST['commento'])) {
$commento = $_POST['commento'];
$connesione = mysql_connect($server,$nomeutente,$password);
}
if(mysql_select_db($database)){
$insert = "INSERT INTO commenti SET data=CURDATE(),testo='$commento'";
}
if($richiesta = mysql_query('SELECT testo FROM generale')){
}
while ($testovisualizzato = mysql_fetch_array($richiesta)){
echo '<p>' . $testovisualizzato['testo'] . '</p>';
}
?>
</div>
</body>
</html>