Skip to content

Instantly share code, notes, and snippets.

@boogy
Created December 30, 2014 20:38
<?php
if(@$_SESSION['is_ExclusiveMember']){header("location: ".$LINK);die();}
if(isset($_POST['user'])){
if(@$_POST['user']===$uLOGIN && @$_POST['pass']===$uPASSWORD){
$_SESSION['is_ExclusiveMember']=1;
header("location: ".$LINK);
die();
}else{
$Error=1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment