hi
i need some help with this simple code. i need it to only allow people with access level 1 and 2 to be able to see the page. everyone else should be kicked to the front page.
here is my code
if ($_SESSION['access_level'] != 1 || $_SESSION['access_level'] != 2) {
header("Location: [url]http://chriscolden.net/[/url]");
}
thanks for all your help
chris
p.s. i know the header is wrong i can't stop it from making it a link.