I want to use some online web service. but am not expert in thsi field.
a tutorial on the nety said someth9ng like this..
require_once('nusoap.php');
$wsdl="http://www.xmethods.net/sd/2001/CurrencyExchangeService.wsdl";
$client=new soapclient($wsdl, 'wsdl');
$param=array('country1'=>'usa', 'country2'=>'canada');
echo $client->call('getRate', $param);
it was using nuSoap library. nut when viewing this page after coding it. nothing appears on screen.
what is the porblem