You need to establish what level the user is logged in as, and then check for that level. You can can use $_SESSION, or cookies, or a combination of the two. For my sites (all hobby site, but membership sites non-the-less) I pull the 'user_level' from mysql database, and set a $_SESSION['user_level'], then compare: (This is over-simplified and sloppy syntax! BEWARE!) if ($_SESSION['user_level'] < 4) {include "member_menu.php";} else {include "level4_check_onlyadmins.php";} or the 'inverse' logic: if ($_SESSION['user_level'] == 4) {include "level4_check_onlyadmins.php";} else {include "member_menu.php";} I hope this gets you headed in a better direction.....  |