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
https://forums.phpfreaks.com/topic/13360-password-session-control/
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.

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.