Ver Mensaje Individual
  #8 (permalink)  
Antiguo 10/10/2009, 08:13
samu22
 
Fecha de Ingreso: abril-2008
Mensajes: 453
Antigüedad: 16 años, 11 meses
Puntos: 16
Respuesta: escribir en un fichero con php y subirlo al servidor

y con

Código php:
Ver original
  1. <?php
  2. ini_set('magic_quotes_gpc','Off');
  3.  
  4. $titulo=$_POST['txt1'];
  5. $ruta=$_POST['txt2'];
  6. // creamos el archivo de texto en local para ser subido
  7. $crear=fopen($titulo.'.txt',"a");
  8. fwrite($crear,$ruta,strlen($ruta));
  9. fclose($crear);