I fell like this is a pretty simple fix, but i have tried so many different ways of doing this and have spent sooo many hours on google. basically a user logs in and my script makes sure that they are in my database. that works great, then i start my seesion.
session_start();
$_SESSION['log']=$username;
header("location:lindex.php");
On my next page, lindex.php, i call the session into order and try to set an if statement based on whether that value in $_SESSION['log'] is “support” or not, however it seems that no matter what the value in my session call is, it always performs the if statment i have tried basing it on string length, strstr, strpos, ==”support. nothing is working. any ideas? here is lindex.php:
session_start();
if(empty($_SESSION['log'])){
echo "You must log in";
exit();}
if(strstr($_SESSION['log'], 'support'))
{
header("location:../sindex.php");
}
on a side note. if session is empty, it does exit script.
should be: