05 abril 2009

Guardar datos de formulario web en fichero de texto: ejemplo sencillo en PHP

Formulario:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Input Form</title>
</head>

<body>
<form action="process.php" method="POST" name="inputform" id="inputform">
Field 1 <br />
<input type="text" size="100" name="field1" />
<br />
Field 2 <br />
<input type="text" size="100" name="field2" />
<br />
<input type="submit" name="submit" value="Submit" />
</form>
</body>
</html>


El script:

<?php
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$field1 = $_POST['field1'] ;
$field2 = $_POST['field2'] ;
$f=fopen("file.txt","a");
fwrite($f,"$field1|$field2|\r\n");
fclose($f);
}
?>


(Añade los 2 campos, terminados en con el pipe "|", al fichero file.txt)

Fuente: http://forums.rapidvps.com/showthread.php?t=1002

1 comentarios:

Anónimo dijo...

me gustaria un poco mas completo

Publicar un comentario

Nota: solo los miembros de este blog pueden publicar comentarios.