Ver Mensaje Individual
  #7 (permalink)  
Antiguo 26/09/2007, 13:22
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 8 meses
Puntos: 17
Re: Escribir archivo *.txt en servidor con PHP

Lo de [TAB] era para decir q toques el botón tab, nada más :P

Código PHP:
<?php
if (isset($_POST['submit'])) {
$fp fopen("myarchivo.txt","a");
fwrite($fp$_POST['nombre'] . "\t" $_POST['apellido'] . PHP_EOL);
fclose($fp);
die;
}
?>
<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post">
<input type="text" name="nombre" />
<input type="text" name="apellido" />
<input type="submit" name="submit" />
</form>