Ecco a voi la versione 1.5 del mio sistema di commenti, con l'aggiunta dei BBcode.
<?
$author = $_POST['author'];
$text = $_POST['text'];
$dateFormat = "d-m-Y";
$actualDate = time();
$actualDateDisplay = date($dateFormat,$actualDate);
$text = str_replace("<", "<", $text);
$text =...