Skip to content

Instantly share code, notes, and snippets.

@melvinmt
Created March 1, 2011 16:04
Show Gist options
  • Save melvinmt/849348 to your computer and use it in GitHub Desktop.
Save melvinmt/849348 to your computer and use it in GitHub Desktop.
<?php
require_once('Tinypayme.php');
$t = new Tinypayme($mashape_api_key);
$request = $t->getCurrencies();
foreach ($request->result as $currency){
echo $currency->sign.' '.$currency->title.' '.$currency->code;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment