i need convert this code:
<?php
$soapclient = new nusoap_client('url?wsdl','wsdl');
$soapProxy = $soapclient->getProxy() ;
$result = $soapProxy->PaymentUtility(11111, 22222, 33333, 44444, 55555, 66666);
if(!$soapProxy->getError())
{
print_r($result);
}
//________________________________________________________________
$soapclient = new nusoap_client('url?wsdl','wsdl');
$soapProxy = $soapclient->getProxy();
$result=$soapProxy->CheckRequestStatus(11111, 22222, 33333, 44444, 55555, 66666);
if(!$soapProxy->getError())
{
print_r($result);
}
?>
to PHP: SoapClient - Manual
please help me, i cant change it
thank you so much


Sign In
Create Account


Back to top









