1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <select name='select_region' id='select_region'>
<option value='0' >Choisissez votre région</option>
<?php
//Liste des regions
while($result_region) {
echo" <option name='select_region' value='".$result_region['id_region']."' "; if (isset($select_region)){ echo ($select_region == $result_region['id_region'])?'selected="selected"':'';} echo">".$result_region['region']." / ".$result_region['id_region']."</option> ";
$result_region=mysql_fetch_assoc($r_region);
}
?>
</select>
<?php
echo"
<select name='select_departement' id='select_departement'>";
while($result_departement){
echo"<option name='select_departement' value='".$result_departement['id_region']."' "; if (isset($select_departement)){ echo ($select_departement == $result_departement['id_region'])?'selected="selected"':'';} echo">".$result_departement['departement']." / ".$result_departement['id_region']."</option> ";
$result_departement=mysql_fetch_assoc($r_dep);
}
echo"
</select>
";
?> |