Home  >  Article  >  Backend Development  >  PHP simple login page (entry example)

PHP simple login page (entry example)

WBOY
WBOYOriginal
2016-07-25 08:56:261462browse
This article introduces a simple PHP login page for the reference of beginners.

php simple login page, suitable for getting started, not much to say, here’s the code:

<?php
//开启session验证
session_start();
if (isset($_POST["submit"])) {
  if ($_POST["user"] == "php5" && $_POST["pass"] ==
  "iscool") {
    $_SESSION["username"] = $_POST["user"];
  }
}
?>
<html>
<head>
<title>用户登录验证-bbs.it-home.org</title>
</head>
<body>
<?php
if (isset($_SESSION["username"])) {
  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>


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn