我遇到这个问题已经有一段时间了,这是我的表单的代码:
<form action="site/Main.php" method="post">
<p><label for="user" style="text-indent:415px;">User</label> <input type="text" name="user" /></p>
<p><label for="password">Password</label> <input type="password" name="password" /></p>
<p class="submit"><input type="submit" value="log in" /></p>
</form>
这个表单在我的 admin.php 页面上,我想将变量“user”和“password”传递给我的 site/main.php 页面,但是,当我尝试访问变量 php 告诉我它们不存在时,这是我在我的 site/main.php 页面上的代码:
<?php
if(isset($_POST)){
if($_POST["user"] == "Project" && $_POST["password"] == "Project2012"){
echo "Welcome!";
} else{
echo "Wrong username or password!";
}
}
?>
而且我不断收到以下错误:
(!) 注意:未定义索引:第 10 行 C:\wamp\www\site\Main.php 中的用户
知道为什么 $_POST 变量似乎没有被发送到我的主页吗?
非常感谢您提前提供的帮助!