Ver Mensaje Individual
  #3 (permalink)  
Antiguo 01/06/2010, 10:08
rpv
 
Fecha de Ingreso: febrero-2010
Mensajes: 275
Antigüedad: 14 años, 9 meses
Puntos: 10
Respuesta: Coger variables de un select

en HTML:
Código HTML:
Ver original
  1. <form action="" method="get">
  2. <select name="miselect">
  3. <option value="A">Opción A</option>
  4. </form>

en PHP:
Código PHP:
Ver original
  1. echo $_GET['miselect'];


en HTML:
Código HTML:
Ver original
  1. <form action="" method="post">
  2. <select name="miselect">
  3. <option value="A">Opción A</option>
  4. </form>

en PHP:
Código PHP:
Ver original
  1. echo $_POST['miselect'];