11 lines
190 B
PHP
11 lines
190 B
PHP
<?php
|
|
header("location: /");
|
|
// hash the email
|
|
/*
|
|
$email_p = "";
|
|
|
|
$email_hasher = "mdasdfnASUF;Q92jvna.fk2";
|
|
$email_hashed = hash("sha256",$email_hasher.$email_p);
|
|
echo $email_hashed;
|
|
*/
|
|
?>
|