$file=fopen($a['comment'],'r');$r=fread($file,filesize($file));echo $r;fclose($file);
$get = get_filesize($file);echo $get;
$file=fopen($a['comment'],'a+');$text="<b>".$_SESSION['name']."</b><br>".date(Y-m-d)."<br>".$_POST['comment']."<br>\n";fwrite($file,$text);fclose($file);