Showing posts with label Login Page. Show all posts
Showing posts with label Login Page. Show all posts

Friday 27 July 2012

PHP Login Page using Session


A Simple Login Page using Session

This page aims to show a simple ‘log in’ or ‘sign in’ script written in PHP

<?php
session_start();
if (isset($_POST["submit"])) {
  if ($_POST["user"] == "nilanjan" && $_POST["pass"] == "banerjee") {
    $_SESSION["usernm"] = $_POST["user"];
  }
}
?>

<html>
<head>
<title>User Authentication</title>
</head>
<body>
<?php
if (isset($_SESSION["usernm"])) {
  echo("You are logged in!");
} else {
?>
<form method="post">
<input type="text" name="user" /><br />
<input type="password" name="pass" /><br />
<input type="submit" name="submit" value="Login" />
</form>
<?php
}
?>
</body>
</html>