Jump to content

deleting sessions if user restarts


ShaolinF

Recommended Posts

Well I tried that, but it seems like it doesn't work. When I submit a form I get blank entries on the process.php page. Also, I want the user to beable to refresh the page and not lose the data. Here is my code:

<?php
ob_start();
session_start();
	If (!isset($_POST['validate']))
		{
			header ("location: index.htm");
		}

	if (!isset($_SESSION['LOGGEDIN'])) // If user is not logged in
		{				
			//Add session
			echo "session was not set! User was not logged in" . "<BR>";
			$_SESSION['LOGGEDIN'] = TRUE;
			$_SESSION['NAME'] = $_POST['name'];
			$_SESSION['CONTACTNO'] = $_POST['contact'];
			$_SESSION['EMAILADD'] = $_POST['email'];
			$_SESSION['GENDER'] = $_POST['sex'];
		}
		else
		{
			echo "<BR>" . "session is set! User is logged in";
		}
?>

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.