este es el codigo
Código PHP:
<?php
$pvm = getdate();
$archivo="libro/libro.txt";
$uusi="<table border=0 width=95% cellspacing=1><tr><td width=30%>Nombre :</td><td width=70%> $nombre </td></tr><tr><td width=30%>Comentario :</td><td width=70%>$comentario </td></font></tr></table><hr width=95%>\n\n";
$fp=fopen($archivo, "r+");
$vanha=fread($fp, filesize($archivo));
fseek($fp, 0);
fwrite($fp, "${uusi}${vanha}");
fclose($fp);
print "<strong>Gracias por firmar</strong> !!<br>";
print "<a href=portada.php?id=libro><strong>Regresar</strong></a>";
?>