Ver Mensaje Individual
  #2 (permalink)  
Antiguo 11/09/2003, 08:12
Avatar de Kaopectate
Kaopectate
Colaborador
 
Fecha de Ingreso: diciembre-2001
Ubicación: Curaçao (Antillas Holandesas)
Mensajes: 3.179
Antigüedad: 22 años, 4 meses
Puntos: 38
Hola boricles.

Prueba esto:

Código PHP:
<html>
 <
head>
  <
script language="JavaScript">

   function 
copia(valor){
    
document.frm.texto.value valor;
   }

  
</script>
 </head>
 <body>
  <form name="frm">
   <input type="file" onchange="copia(this.value)"><br><br><br>
   Archivo: <input type="text" name="texto">
  </form>
 </body>
</html> 
(En lo que tienes puesto te sobra el this)

Saludos.