// Function to get the user IP addressfunctiongetUserIP() {
$ipaddress='';
if (isset($_SERVER['HTTP_CLIENT_IP']))
$ipaddress=$_SERVER['HTTP_CLIENT_IP'];
elseif(isset($_SERVER['HTTP_X_FORWARDED_FOR']))
$ipaddress=$_SERVER['HTTP_X_FORWARDED_FOR'];
elseif(isset($_SERVER['HTTP_X_FORWARDED']))
$ipaddress=$_SERVER['HTTP_X_FORWARDED'];
elseif(isset($_SERVER['HTTP_X_CLUSTER_CLIENT_IP']))
$ipaddress=$_SERVER['HTTP_X_CLUSTER_CLIENT_IP'];
elseif(isset($_SERVER['HTTP_FORWARDED_FOR']))
$ipaddress=$_SERVER['HTTP_FORWARDED_FOR'];
elseif(isset($_SERVER['HTTP_FORWARDED']))
$ipaddress=$_SERVER['HTTP_FORWARDED'];
elseif(isset($_SERVER['REMOTE_ADDR']))
$ipaddress=$_SERVER['REMOTE_ADDR'];
else$ipaddress='UNKNOWN';
return$ipaddress;
}
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems
resetting your password contact us
Check Your Email and Click on the link sent to your email