This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AFG | Afghanistan | |
ALB | Albania | |
DZA | Algeria | |
ASM | American Samoa | |
AND | Andorra | |
AGO | Angola | |
AIA | Anguilla | |
ATA | Antarctica | |
ATG | Antigua and Barbuda | |
ARG | Argentina |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"ABW":"Aruba", | |
"AFG":"Afghanistan", | |
"AGO":"Angola", | |
"AIA":"Anguilla", | |
"ALA":"Åland Islands", | |
"ALB":"Albania", | |
"AND":"Andorra", | |
"ANT":"Netherlands Antilles", | |
"ARE":"United Arab Emirates", | |
"ARG":"Argentina", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$countries = Array( | |
'AF' => 'Afghanistan', | |
'AL' => 'Albania', | |
'DZ' => 'Algeria', | |
'AS' => 'American Samoa', | |
'AD' => 'Andorra', | |
'AO' => 'Angola', | |
'AI' => 'Anguilla', | |
'AG' => 'Antigua And Barbuda', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$twit_user = 'andrei_md'; | |
$url = 'http://twitter.com/users/show/'.$twit_user.'.json'; | |
$twitter_user = json_decode(file_get_contents($url)); | |
echo $twitter_user->status->text; | |
?> |
NewerOlder