I have a “Search for your Destination” drop down list which is showing Int’l countries. I need to also include “India” states/towns. Is there a way I can add “India” to this list?
<?php
$destsql="SELECT * FROM `ts_destinations` WHERE `type`='International'";
$destqry=mysql_query($destsql);
while($destres=mysql_fetch_array($destqry)){
?>
<option value="<?=$destres['seo_url']?>"><?=$destres['destination']?></option>
<?php } ?>
I really appreciate your help…thanx in advance