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";
		}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.