Hi folks, How to exclude some of countries from List Menu at below? Now my code will list all of country name from database.
Example I want to exclude Albania country from the List Menu. How to implement it according to these code.
Code
<?php $select_country=mysql_query("SELECT * FROM tbl_country ORDER BY country_name ASC")?>
<select name="country" onchange="return get_country(this.value);">
<option value=""><?=SELECT_COUNTRY?></option>
<? while($country=mysql_fetch_array($select_country)) {?>
<option <? if($_SESSION['getcountry']==$country['id']){ ?> selected="selected"<? }?> value="<?=$country['id']?>"><?=$country['country_name']?></option>
<? } ?>
</select>
Mysql
id country_name
1 Afghanistan
2 Aland Islands
3 Albania
4 Algeria
5 American Samoa
6 Andorra