????
| Current Path : /home2/morganrand/www/ |
| Current File : /home2/morganrand/www/mobileverify.php |
<?php
$pass = $_POST['password'];
if (empty($pass) )
{
header('LOCATION: mobileloginerror.html');
exit;
}
elseif ( $pass!="partywithwanderfuls" ) {
header('LOCATION: mobileloginerror.html');
exit;
}
else {
header('LOCATION: mobilerooms.html');
exit;
}
?>