Jump to content

Disabling page view if not logged in.


kinks

Recommended Posts

<?php
session_start();

if ($_SESSION['loggedIn'] != 'admin')
{   //check the registered user, if not go index.php 
if(!$_SESSION['id'])
{
	header("location:index.php"); 
	die();
}
else
{
  echo " <script language='JavaScript'>history.go(-1);</script>";  
}
}
?>

Link to comment
Share on other sites

OK, when a user logs in, set a variable, along with all the other variables you set, such as username, id, email, etc.:

 

$_SESSION['logged'] = TRUE;

 

Next, whenever you want to hide/disable something, or do something for non logged in users, do this, here are some examples:

 

Redirect to login page:

session_start();
if(!$_SESSION['logged']){
     header("Location: login.php");
     exit;
}

 

Display a login form or a user navigation bar:

session_start();
if(!$_SESSION['logged']){
     echo '<form action="login.php" method="post">
          <p><input type="text" value="Username" name="username" /></p>
          <p><input type="password" name="password" /></p>
     </form>';
}else{
     echo '<a href="home.php">Home</a> | <a href="logout.php">Logout</a>';
}

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.