我在设置基本的php表单提交时遇到了一些麻烦。使用以下代码:
的index.html:
<html>
<body>
<form action="welcome.php" method="post">
Name: <input type="text" name="name"/><br>
E-mail: <input type="text" name="email"/><br>
<input type="submit">
</form>
</body>
</html>
在欢迎php页面上使用以下php。
Welcome <?php echo $_POST["name"]; ?><br>
Your email address is: <?php echo $_POST["email"]; ?>
</body>
</html>
索引页面显示两个带有可输入文本字段的表单,但是当输入文本并单击提交时,它会将我带到php页面而不发送任何数据。
描述有点模糊,这里有一个显示正在发生的事情的gif: https://gyazo.com/aa1c9df6b090600cbc403151df49f0e3