gpt4 book ai didi

php - $_POST 数组未由表单提交填充

转载 作者:太空宇宙 更新时间:2023-11-04 14:51:36 26 4
gpt4 key购买 nike

我正在我的网站上开发电子邮件订阅功能。我遇到了 php 没有获取表单值的问题。我已经看过很多关于这个问题的话题,但没有任何运气。

那么,在php中如何获取email字段的值呢?

<div>
<form action="/email.php">
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">

<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="email">Email</label>
<input type="text" id="email" name="email">


<input type="submit" value="Submit">
</form>
</div>

电子邮件.php

<?php
$email = $_POST["email"];
echo $email;
?>

最佳答案

不要在 email.php 之前使用/并且您忘记了方法类型

<div>
<form action="email.php" method='POST'>
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" placeholder="Your name..">

<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" placeholder="Your last name..">
<label for="email">Email</label>
<input type="text" id="email" name="email">


<input type="submit" value="Submit">
</form>
</div>

关于php - $_POST 数组未由表单提交填充,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50072747/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com