Tema: Get y post
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/12/2008, 16:08
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años
Puntos: 2135
Respuesta: Get y post

Si es posible, solamente pasas las variables por GET que quieras en el action y por post las otras, por ejemplo:
Código html:
Ver original
  1. <form action="foo.php?bar=baz" method="post">
  2. <input type="text" name="nombre" value="" />
  3. </form>

Saludos.