PHP array and select list

student2008

New Member
I want to use php array for HTML select list. In this case it will be the list of countries but beside of country name that is listed in drop down list I need as a value of each country short country code.The php array that I'm currently using looks like:\[code\]$wcr=array('Angola','Antigua & Barbuda','Armenia', 'Austria','Azerbaijan', ..... );\[/code\]The PHP page that using this array:\[code\]<select name="country"><option selected value=""> --------- <? $p=1;asort($wcr);reset($wcr);while (list ($p, $val) = each ($wcr)) {echo '<option value="'.$p.'">'.$val;} ?></select>\[/code\]The value should be short country code (something like 'ES', 'US', 'AN', ...) instead of numbers that I have right now as a values in this form. That short country codes I will write in this same PHP array somewhere, if it's possible.How can I do that?
 
Back
Top