Download PHP Country List Nulled
The PHP Country List function allows you to convert country codes to names or names to country codes. Supported are 237 Countrys. Example Code: //Require the function require_once 'countrycodelist.php'; //EXAMPLE #1 echo '---CREATING A SELECT BOX---<br />'; $countrys = countryConversion('all'); echo "<select name='country'>"; foreach($countrys as $country){ echo "<option value='".$country['code2']."'>".$country['country']."</option>"; } echo "</select>"; //EXAMPLE #2 echo […]