Tema: Get y Post
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/12/2008, 11:41
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

Hola Chupytoloco,

No es imposible, tratalo tu mismo:
Código html:
Ver original
  1. <form method="test.php?valorget=bar" method="post">
  2. <input type="text" name="valorpost" value="foo">
  3. <input type="submit" name="submit">
  4. </form>
Código php:
Ver original
  1. <?php
  2. var_dump($_GET);
  3. var_dump($_POST);

Saludos.