我目前正在开发一个非常基本的登录系统,我知道这不是最好的方法,但是在那一刻我只想确保我能抓住它...我的登录。 php看起来如此......
<?php
session_start();
$the_username = "xxxx";
$the_password = "12345";
if ($_POST['username'] == $the_username ) &&
($_POST['password'] == $the_password) {
$_SESSION['username'] = $username;
header("Location: menu.php");
}
else { echo "Entry Denied"; return;}
?>
我的表格看起来像......
<form action="login.php" method="POST" >
<input type="text" name="username" placeholder="Username"/>
<input type="password" name="password" placeholder="Password"/>
<input type="submit" name="Login" class="login" value="Login"/>
</form>
有人可以解释为什么这似乎不起作用吗?
答案 0 :(得分:0)
$username
为空,但$_POST['username']
正是您要找的