Skip to content

Instantly share code, notes, and snippets.

@rodrigopolo
Created February 10, 2015 10:23
Show Gist options
  • Save rodrigopolo/d009299c849a7c973a34 to your computer and use it in GitHub Desktop.
Save rodrigopolo/d009299c849a7c973a34 to your computer and use it in GitHub Desktop.
Tasa de Cambio Banco de Guatemala USD Q Banguat
<?php
// nusoap-0.9.5
require 'lib/nusoap.php';
$client = new nusoap_client('http://www.banguat.gob.gt/variables/ws/TipoCambio.asmx?WSDL', true);
$error = $client->getError();
if($error){
echo $error;
}else{
$result = $client->call('TipoCambioDia');
print_r($result);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment