任何人都可以帮助我在谷歌应用引擎上使用 php 中的 html 表单。我有两个文件,第一个文件将用户名和密码发送到第二个文件,第二个文件应该显示适当的消息。
这是第一个.html
<html>
<body>
<form action="hello.php" method="POST">
<b>Username: </b> <input type="text" name="username"> <br>
<b>Password: </b> <input type="text" name="password"> <br>
<input type="submit">
</form>
</body>
</html>
这是 hello.php(第二个文件):
<?php
$username = $_POST['username'];
$password = $_POST['password'];
if($password == 'user' and $password =='pass')
echo 'Success';
else
echo 'Fail';
?>
当我在 first.html 中按下提交按钮时,我的两个文本框变为空白并且我的链接更改,但我没有看到任何消息。如果我手动运行 hello.php,那么它会显示消息。