我在PHP中有一个简单的联系表单,用于将表单输入发送到电子邮件地址。但是,textarea并不包括在内。正在发送姓名和电子邮件,但textarea是空白的。
我的表格:
<form method="post" action="contact.php" id="form" role="form" class="form contact-form">
<!-- Form Heading -->
<h3 class="small-section-heading align-center">I'm always open to talk</h3>
<!-- Name -->
<div class="form-group">
<input type="text" name="name" id="name" class="form-control" placeholder="Name" pattern=".{2,100}" required>
</div>
<!-- Email -->
<div class="form-group">
<input type="email" name="email" id="email" class="form-control" id="" placeholder="Email" pattern=".{5,100}" required>
</div>
<!-- Message -->
<div class="form-group">
<textarea name="message" id="message" class="form-control" rows="6" placeholder="Message"></textarea>
</div>
<!-- Send Button -->
<button type="submit" class="btn btn-spacia btn-medium btn-full">
Send
</button>
</form>
我的PHP联系表单:
<?php
$name=$_POST['name'];
$email=$_POST['email'];
$message=$_POST['message'];
$from="From: $name<$email>\r\nReturn-path: $email";
$subject="Message sent using your contact form";
mail("email@example.com", $subject, $message, $from);
?>
Thank you for contacting us. We will be in touch with you very soon.
<?php
}
?>
答案 0 :(得分:0)
在测试代码之后,似乎你有一个语法错误,因为你有一个没有开头的大括号。一旦我删除它,它似乎好好接受它。所以只需删除:
<?php
}
?>
这就是为什么在这种情况下,在您开发过程中保持error_reporting
开启非常重要,这样您就可以了解脚本无法正常工作的原因。