Non sono molto pratico in php, ho trovato di inserire questo:
Codice PHP:
$testo = $_POST['testo'];
$testo = str_replace (':-)', '<IMG SRC="happy.gif" ALT="happy">', $testo);
$testo = str_replace (';-)', '<IMG SRC="wink.gif" ALT="wink">', $testo);
echo ($testo);
quindi ho fatto in questo modo:
Codice PHP:
<?php
$nomefile="database.htm";
$vecchiofile=fopen($nomefile, "r");
$contenuto_file=fread($vecchiofile, filesize($nomefile));
fclose($vecchiofile);
$testo = $_POST['testo'];
$testo = str_replace '[good]', '<IMG SRC="happy.gif" ALT="happy">', $testo);
fwrite($f, "$testo\r\n");
echo ($testo);
$f=fopen($nomefile, "w+");
fwrite($f, "$contenuto_file\r\n");
fclose($f);
?>
ma logicamente non funziona, perchè è tutto incasinato, potreste aggiustarlo per favore