我正在使用电子邮件或电话号码字段设置登录页面,我不确定为什么我没有得到提供的信息。
使用PHP 7.2.18运行服务器。 我尝试更改输入的按钮(提交),并将type =“ text”更改为type =“ email”
在HTML文件中
<form class="form-mini" method="post" name="contactform" action="send_form_email.php">
<div class="form-row">
<input type="text" name="email" placeholder=" Your email address or phone number">
<button type="submit" value="Submit">Explain me how this works</button>
</div>
</form>
在PHP文件中
<?php
$email = $_POST['email'];
$formcontent="From: Nombre \n Message: Mensaje";
$recipient = "myemailaddress@here.com";
$subject = "Contact Form";
$mailheader = "$email \r\n";
mail($recipient, $subject, $formcontent, $mailheader) or die("Error!");
echo "Thank You!";
?>
我想通过myemailaddress@here.com接收来自提交者的电子邮件或电话号码
谢谢