NON va, ora posto l'intero script:
Codice PHP:
<?php
if ($testo == "")
{
echo "messaggio NON valido";
}
elseif ($testo == "Inserisci qui il tuo messaggio")
{
echo "messaggio NON valido";
}
elseif ($testo == "<,a,href,>,")
{
echo "messaggio NON valido";
}
else
{
$testo = htmlspecialchars("<a href='test'>Test</a>", ENT_QUOTES);
echo $testo; // <a href='test'>Test</a>
$nomefile="database.htm";
$vecchiofile=fopen($nomefile, "r");
$contenuto_file=fread($vecchiofile, filesize($nomefile));
fclose($vecchiofile);
$data=(date("d-m-Y"));
$ora=(date("H:i:s"));
$f=fopen($nomefile, "w+");
fwrite($f, "<span class=\"Stile15\"> - $testo </span> <span style=\"color: rgb(102, 0, 204);\"><strong>($ora)</strong></span>\r\n");
fwrite($f, "$contenuto_file\r\n");
fclose($f);
header("location: http://www.paternopolionair.altervista.org/index.php");
}
?>
come modificarlo?