Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/07/2002, 11:28
MikiBroki
 
Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 22 años, 10 meses
Puntos: 8
Re: Variables en formulario

Hola, espero que te ayude este ejemplo, más o menos es así:

uno.html
========
...

<FORM name="form1" ACTION="dos.php">
<input type="text" name="txtNombre">
<input type="submit" name="btnEnviar">
</FORM>

...

Y luego:

dos.php
=======
...

<form name="form2" action="tres.php">
<input type="text" name="NuevoNombre" value=<? echo($txtNombre);?> >
</form>
...