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