
PK 
| ADDRLIN : /home/anibklip/ldhcgewc.org/cms/ajax_pages/ |
| Current File : //home/anibklip/ldhcgewc.org/cms/ajax_pages/get_city.php |
<?php
@include_once "../../conn.php";
$q="select * from city where state_id='$_GET[state_id]' order by city ";
?>
<select class="form-control" required name="city_id" id="city_id">
<option value="">Select</option>
<?php
$q=mysql_query($q) or die(mysql_error());
while($r=mysql_fetch_array($q)){
?>
<option <?php echo $sel?> value="<?php echo $r[city_id]?>"><?php echo $r[city]?></option>
<?php
}
?>
</select>
