我试图让这个表单提交工作,但我不熟悉php。我买了这个,但似乎没有用。
当我按下提交按钮时,什么都不会发生!我只是想知道代码是否写得正确。
提前谢谢
HTML代码
<form method="post" id="contact-form" action="contact.php">
<div class="fields">
<div class="column">
<div class="field">
<input type="text" name="name" placeholder="Name*">
</div>
</div>
<div class="columnlast">
<div class="field">
<input type="text" name="email" placeholder="Email*">
</div>
</div>
</div>
<textarea cols="1" name="message" rows="4" placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
PHP代码
<?php
//Retrieve form data.
//GET - user submitted data using AJAX
//POST - in case user does not support javascript, we'll use POST instead
$name = isset($_GET['name']) ? $_GET['name'] : $_POST['name'];
$email = isset($_GET['email']) ?$_GET['email'] : $_POST['email'];
$phone = isset($_GET['phone']) ?$_GET['phone'] : $_POST['phone'];
$message = isset($_GET['message']) ?$_GET['message'] : $_POST['message'];
if ($_POST) $post=1;
$errors = array();
if (!$name) $errors[count($errors)] = 'Please enter your name.';
if (!$phone) $errors[count($errors)] = 'Please enter your phone.';
if (!$email) $errors[count($errors)] = 'Please enter your email.';
if (!$message) $errors[count($errors)] = 'Please enter your message.';
//If the errors array is empty, send the mail
if (!$errors) {
// ====== mail here ====== //
$to = 'Ardi Mir <ardmir87@hotmail.com>';
// Sender
$from = $name . ' <' . $email . '>';
//subject and the html message
$subject = 'Message from your website';
$message = '
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
<table>
<tr><td>Name:</td><td>' . $name . '</td></tr>
<tr><td>Phone:</td><td>' . $phone . '</td></tr>
<tr><td>Email:</td><td>' . $email . '</td></tr>
<tr><td>Message:</td><td>' . nl2br($message) . '</td></tr>
</table>
</body>
</html>';
$result = sendmail($to, $subject, $message, $from);
if ($_POST) {
if ($result) echo 'Thank you! We have received your message.';
else echo 'Sorry, unexpected error. Please try again later';
} else {
echo $result;
}
} else {}
function sendmail($to, $subject, $message, $from) {
$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= 'From: ' . $from . "\r\n";
$result = mail($to,$subject,$message,$headers);
if ($result) return 1;
else return 0;
}
?>
答案 0 :(得分:1)
您的表单无法正常工作且邮件未发送的原因是因为它缺少phone
字段。
将以下内容添加到HTML表单中:
<input type="text" name="phone" placeholder="Phone*">
它会起作用。
如果在PHP中设置/包含error reporting,则会抛出以下内容,或者类似于:
注意:未定义的索引:第X行的/path/to/your/file.php中的电话
将错误报告添加到文件顶部,这将有助于生产测试。
error_reporting(E_ALL);
ini_set('display_errors', 1);
答案 1 :(得分:0)
我已经快速将您的代码放在我的本地网络服务器上并查看了它。
首先,替换
if(!$errors)
与
if(empty($errors))
如果您使用!$variable
,则PHP会检查该变量是否为内容为FALSE
的bool。
$foo=false;
if(!$foo) {...} else {...}
接下来,您需要一个电话号码。
Array ( [0] => Please enter your phone. )
我通过在代码的第56行添加以下内容来解决这个问题:
} else {print_r($errors);}
print_r(...)
允许您以人类可读的格式查看变量的内容。它经常用于调试。
否则,我没有发现任何错误。所以你需要解决的问题,简而言之:
PHP手册还有一些关于empty()
函数的好处:http://php.net/empty
print_r
:http://php.net/print_r