Subversion Repositories cheapmusic

Rev

Rev 9 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 9 Rev 65
Line 1... Line 1...
1
<?php
1
<?php
2
function getCountry($code) {
2
function getCountry($code) {
254
 
254
 
255
  if (array_key_exists($code, $countries)) {
255
    if (array_key_exists($code, $countries)) {
256
    return ($countries[$code]);
256
        return ($countries[$code]);
257
  }
257
    }
258
 
258
 
259
  return("Unknown");
259
    return ("Unknown");
260
}
260
}
261
?>
261
?>