Is there a way to convert country name to country code abbreviation? Or some php function?
So that when its "Australia" it will be changed to "AU"
Is there a way to convert country name to country code abbreviation? Or some php function?
So that when its "Australia" it will be changed to "AU"
PHP itself has no knowledge of these values. You have to create your own code:
Method 1:
Create an array like:
After that, just use the pre0stored values:
Method 2 ( suggested ):
Store the values into DB:
And Access with simple query:
EDIT