Tengo este código para un sistema de comentarios:
Código PHP:
<?php
foreach($_REQUEST as $key => $value){
$value = trim($value);
if(!empty($value)){
$$key = $value;
}
}
if($whatType == "fileInput" && !empty($Name) && !empty($Title) && !empty($Comment)){
$file = "guestbook";
$gInfo = "\r\n %comment% " . preg_replace("/\r\n/", "<br />", htmlentities($Comment, ENT_QUOTES)) . "\r\n"
. "%title% " . htmlentities($Title, ENT_QUOTES) . "\r\n"
. "%name% " . htmlentities($Name, ENT_QUOTES) . "\r\n";
$wFile = fopen($file, "a+");
fwrite($wFile, $gInfo);
fclose($wFile);
}
header("Location: $action");
?>
Código HTML:
<form name="guestForm" action="mod_file.php" method="post"> <input type="hidden" name="whatType" value="fileInput"> <input type="hidden" name="action" value="<?php echo $_SERVER["PHP_SELF"] ?>"> <table align="center"><tr> <td align="right">Nombre:</td> <td><input type="text" name="Name" size=30 maxlength=25></td> </tr><tr> <td align="right">Titulo:</td> <td><input type="text" name="Title" size=30 maxlength=25></td> </tr> <tr valign="top"> <td align=right>Comentario:</td> <td><textarea name="Comment" rows="5" cols="40"></textarea></td> </tr><tr> <td colspan=2 align="right"> <center><input type="submit" value="Enviar Comentario"> </center></td> </tr> </table> </form>
Tambien queria poner un campo en el formulario que fuese Email, pero que el Email no se publique, simplemente que lo guarde en el archivo donde se almacenan los comentarios para yo saber quien lo ha publicado.Y ponerle una restriccion para que el Email sea valido(No se si me explico).
Y por ultimo si se puede, que se guarde la IP en el archivo en el que se guardan los comentarios, pero que la IP no aparezca en el comentario publicado.
Espero haberme explicado bien y gracias de antemano por su ayuda.
Saludos!