Hi,
This is probably in every book, but I'm blank here.
I'd like to use an ISO two-letter code for country drop-down menu to store in my db, but show actual full name on a page.
E.g. US ==>> United States of America
I'll put code in value:
<option value="US">United States</option> and I assume I'll create a separate file with all names that will include something like this:
$US = "United States";
What I'm not sure about is how to call that list to replace abbreviation with full-name. I think it's the same way languages are done for translating site, but I've never done it myself...