Jump to content

Using Session Variable if a user is not logged in


ikon

Recommended Posts

My current Session Script is as follows:

 

<?php

session_start();

if(isset($_SESSION['username'])==false){

header("Location:Login/Login.php");

exit();

}

?>

 

However, this will only work when the user logs in to initiate the "username" variable.

 

Is it possible to use a guest session if so how can this be done?

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.