Jump to content

$_SESSION['user'] undefined problem


iStriide

Recommended Posts

I have this bit of code and when the user is logged out it shows an error and it messes with the way my site looks.

The error is this: Undefined index: user in C:\xampp\htdocs\halobattles\index.php on line 90

 

Here's is an example of how my code looks:

<?php
session_start();

if($_SESSION['user']){

echo "Logged In";

}else{

echo "Normal";

}

?>

 

I want the error to go away when people are logged out.

Link to comment
https://forums.phpfreaks.com/topic/244793-_sessionuser-undefined-problem/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.