Non va... 
E ora c'è un problema più grosso... Non accetta NIENTE! Facciamo così... Posto tutto:
Codice PHP:
<html>
<head>
<title>Guestbook</title>
</head>
<body>
<table border ="1">
<?
include("../conn.php");
conn();
if (isset($_POST['autore'])){
$autore=$_POST['autore'];
$data=date("d/m/y");
$ora=date("H:i:s");
$messaggio=$_POST['messaggio'];
$colore=$_POST['colore'];
$query=mysql_query("insert into guestbook(autore,data,ora,messaggio,colore) values('$autore','$data','$ora','$messaggio','$colore')");
if($query) {
echo"oh yeah";
} else {
echo"no no no!";}
} else {
echo '
Il tuo nome:
<form method=post action="invia.php">
<input type=text name="autore" maxlength=20>
Scrivi il tuo messaggio:
<textarea name="messaggio" rows="6" cols="50" maxlength=255></textarea>
Colore del testo:
<select name="colore">
<option value="#000000" selected>Nero
<option value="#ff0000">Rosso
<option value="#00ff00">Verde
<option value="#0000ff">Blu
<option value="#ffff00">Giallo
<option value="#ffa020">Arancione
<option value="#ff80a0">Rosa
<option value="#802080">Viola
</select>
<input type=submit value="Invia messaggio">
</form>';
}
echo "\n";?>
</table>
</body>
</html>