Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/05/2005, 06:36
ratamaster
 
Fecha de Ingreso: octubre-2004
Ubicación: En algún lugar de la República Oriental del Uruguay
Mensajes: 366
Antigüedad: 19 años, 5 meses
Puntos: 0
yo lo he hecho con una mezcla de php+javascript;

Código:
<SCRIPT  TYPE="text/javascript">

function jumpSelect(vencatid) {

        window.location.href = "../archivo/"+vencatid+"/";

}
</SCRIPT>
Código PHP:
<form action="#" method="post" name="form1">
<select name="vencatid" onChange = "javascript:jumpSelect(this.value);">
<option value=1>
<?
$sql
="SELECT TU QUERY"
$result=mysql_query($sql);
while(
$row2=mysql_fetch_array($result2)){
print
"<option  value=".$row2['Id'].">".$row2['Nam']."</option>\n";
}

?>
</select>
</form>
Espero que te sirva

ratamaster