<?
require_once('header.html');
require_once('lib/nusoap.php');
if (!$Username || !$Password)
{
echo "<center><p>You have not entered all the required details.<br>";
echo "Please, <a href='sms_status.html'>go back</a> and try again</center>";
exit;
}
$soapclient = new soapclient('http://sms.yakoon.com/sms.asmx?wsdl','wsdl');
$result = $soapclient->call('Status',array('Username'=> $_GET['Username'],'Password'=>$_GET['Hash'],'IDSms'=> $_GET['IDSms'],'IDInt'=> $_GET['IDInt']));
print_r($result);
require_once('footer.html');
?>