Ver Mensaje Individual
  #4 (permalink)  
Antiguo 31/08/2011, 19:07
Avatar de hasdpk
hasdpk
 
Fecha de Ingreso: agosto-2011
Ubicación: $spain->city( 'Arucas' );
Mensajes: 1.800
Antigüedad: 12 años, 8 meses
Puntos: 297
Respuesta: Editar dirección vía formulario

Si lo quieres más escueto y en el mismo archivo:

Código PHP:
Ver original
  1. <?php if ($_GET) { header("Location: ./{$_GET['usuario']}"); } ?>
  2.  
  3. <html>
  4.  
  5.     <head> ... </head>
  6.  
  7.     <body>
  8.  
  9.         <form method="get">
  10.  
  11.             <input type="text" name="usuario" />
  12.             <input type="submit" value="ir">
  13.            
  14.         </form>
  15.  
  16.     </body>
  17.  
  18. </html>