Posted: Thu Jul 11, 2002 12:45 am
That shouldn't be the problem, then. Did you make a page to see if it will echo the values appropriately?
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
Code: Select all
if (isset($cbaa) && ($cbaa == "user")){
include ("ucp.php");
}Code: Select all
if (isset($cbaa) && $cbaa == "user"){
include ("ucp.php");
}Code: Select all
$s = "n";
if ($page == 'login'){
include ("l.php");
}
else if (isset($logcbaa) && ($logcbaa == 'user')){
$s = "y";
include ("ucp.php");
}
else if (isset($logcbaa) && ($logcbaa == 'staff')){
$s = "y";
include ("scp.php");
}
else if (isset($logcbaa) && ($logcbaa == 'admin')){
$s = "y";
include ("acp.php");
}
if ($page != 'login' && $s == 'n'){
include ("log.php");
}