calle y terraceria y quiero que al seleccionar uno me haga una consulta y genera otro drop menu con las opciones referentes ala que selecciono
lei aqui h t tp://w w w.foros delweb.com/f13/hola-como-genero-drop-down-partir-otro-268405/
entonces puse el script de java que viene ahi
Código PHP:
<script language="javascript">
function recarga(){
window.location = "<?php echo $_SERVER['PHP_SELF']; ?>?var="+document.form.segment.value;
onChange="location.reload()";
}
</script>
Código PHP:
<td height="48">Segment</td>
<td colspan="4"><label>
<select name="segment" id="segment" onchange="recarga()">
<option value="street">Street</option>
<option value="Off Road">Off Road</option>
</select>
</label>
<label>
<?php
if(!empty($var)){
$var=$_GET["var"];
require_once('Connections/conn.php');
mysql_select_db($database_conn,$conn); //seleccionamos la base de dota
$result=mysql_query("SELECT * from sub_segmento", $conn); // realizamos el query
echo '<select name="cmb">';
while ($row = mysql_fetch_array($result)) {
echo '<option id="'.$row["sub_segmento"].'" name="cmb">'.$row["sub_segmento"].'</option>';
}
echo '</select>';
}
?>
</td>
si escribo en la barra de irecciones frontEndAlt.php?var=street me funciona asi que es algo del javascript