我第二次发布关于这个网站我正在编码,但我取得了很好的进展!我正在尝试设置一个表单,当用户填写时会发送到我的电子邮箱 - 不是很难吗?好吧,当我最终点击提交按钮时,我收到错误:
无法POST /mail.php
这是我所拥有的表单的HTML:
<form method="post" action="mail.php">
<div class="field half first">
<label for="name">Name</label>
<input type="text" name="name" id="name" />
</div>
<div class="field half">
<label for="email">Email</label>
<input type="text" name="email" id="email" />
</div>
<div class="field">
<label for="message">Message</label>
<textarea name="message" id="message" rows="5"></textarea>
</div>
<ul class="actions">
<li><a href="" class="button submit">Send Message</a></li>
</ul>
</form>
这是我的mail.php文件
<?php
$myemail = "MYEMAIL";
$name = check_input($_POST['name'], "Enter your name");
$email = check_input($_POST['email']);
$message = check_input($_POST['message'], "Write your message");
if (!preg_match("/([\w\-]+\@[\w\-]+\.[\w\-]+)/", $email))
{
show_error("E-mail address not valid");
}
$message = "
Name: $name
E-mail: $email
Subject: $subject
Message:
$message
";
mail($myemail, $subject, $message);
header('Location: thankyou.html');
exit();
function check_input($data, $problem='')
{
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
if ($problem && strlen($data) == 0)
{
show_error($problem);
}
return $data;
}
function show_error($myError)
{
?>
<html>
<body>
<p>Please correct the following error:</p>
<strong><?php echo $myError; ?></strong>
<p>Hit the back button and try again</p>
</body>
</html>
<?php
exit();
}
?>
这两个文件都在同一个目录中,所以我不知道为什么这不起作用:(谢谢大家&lt; 3
编辑:这是表单like
的外观编辑2:更改按钮:
<li><input type="submit" value="Send Message" class="button submit" /></li>
但仍然遇到同样的问题:/
编辑3:也可以确认
<li><button type="submit" value="Send Message" class="button submit" /></li>
没有区别:((
答案 0 :(得分:0)
您需要使用按钮
<button class="yourclasshere" type="submit" name="sendMail">Send Mail</button>
在PHP中,您需要添加一行代码来检查表单是否正在提交。这可以通过以下方式完成:
if(isset($_POST['sendMail'])) {
//validate your inputs and submit the form here
}
这样做会检查您是否点击了提交按钮(在此示例中,您将按照我已命名的按钮名称&#39; sendMail&#39 ;)如果有,您可以使用现有函数设置其他变量(名称,电子邮件,消息)的值。
如果一切顺利,你可以从那里发送邮件。