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> Copy after login |