Ver Mensaje Individual
  #6 (permalink)  
Antiguo 25/04/2011, 13:14
Avatar de quike88
quike88
 
Fecha de Ingreso: agosto-2008
Mensajes: 471
Antigüedad: 15 años, 8 meses
Puntos: 87
Respuesta: desde lista desplegable pasar a un script

mm.. esto no tiene nada de PHP, bueno como dice bUllan9ebrio podrías intentar algo asi:

Código HTML:
Ver original
  1. <select onchange="location.href=this.value" name="menuprovincia" disabled>
  2.             <option value=0>ELIJA UNA PROVINCIA</option>


o asi:

Código HTML:
Ver original
  1. <select onchange="location.href='provincia.php?id='+this.value" name="menuprovincia" disabled>
  2.             <option value=0>ELIJA UNA PROVINCIA</option>

Saludos.