Jump to content

password session control


sun14php

Recommended Posts

Hi, all,

  as i hv build my website(under apache,redhat as 4,php,mysql) now i hv a login page as start-up page on site. it takes username & password & allow user to proceed. but it's not authentication .. i want that a user unable to access any page unless he give proper username & password at first page itself or he redirect to first page saying "Login first". it is just like session control or something. please guide me to get it fit.

help needed
Link to comment
Share on other sites

Set the session information correctly.

<? session_start();

if((!$_SESSION['username'])&&(!$_SESSION['password'])){


code

}else{

header("location: index.php");

}

?>

or display a message and a link to goto the main page only an example.

<? session_start();

if((!$_SESSION['username'])&&(!$_SESSION['password'])){


code

}else{

echo" Sorry please login <br><br> <A href='index.php'>login please</a";
exit;
}

?>


Only an example hope this helps.
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.