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