11 lines
258 B
PHP
11 lines
258 B
PHP
<?php
|
|
|
|
$pass = htmlspecialchars(stripslashes(trim($_POST["pass"])));
|
|
|
|
if($pass == "pumpkinspice"){
|
|
echo("Sorry, I've stopped sharing this album. Contact me for photos");
|
|
} else {
|
|
header('Location: http://chuckdries.rocks/spookyno.html');
|
|
}
|
|
|
|
?>
|