13/09/2004, 05:37
|
| | Fecha de Ingreso: febrero-2004 Ubicación: Resistencia - Argentina
Mensajes: 299
Antigüedad: 20 años, 9 meses Puntos: 0 | |
Con esto tendria que andar:
formulario.html:
-----------------
<html>
<body>
<FORM METHOD="POST" ACTION="procesa2.php" >
Introduzca su nombre:<INPUT TYPE="text" NAME="nombre"><BR>
Introduzca sus apellidos:<INPUT TYPE="text" NAME="apellidos"><BR>
<INPUT TYPE="submit" VALUE="Enviar">
</FORM>
</body>
</html>
y el archivo procesa2.php:
-------------------------
<html>
<body>
<? echo "Nombres: " , $_POST['nombre'], "<br>";
echo "Apellidos: " , $_POST['apellidos'] ;
//Esto es parea que guarde los datos en un archivo de texto
//si queres lo podes sacar
$mensaje= "Nombre: " . $_POST['nombre'] . "Apellido: " . $_POST['apellidos'];
$archivo=fopen("archivo.txt","w");
fwrite($archivo, $mensaje);
fclose($archivo); ?>
<br>
</body>
</html> |