<?php //auth.php //Verify the user is a member, allowed to access basic authenticated pages (lowest level authorization) session_start(); if ($_SESSION[valid_login] != "true") { header("Location:/index.php"); exit; } ?>