我正在处理一个PHP邮件表单,到目前为止一切工作正常。它将返回表单中除复选框结果之外的所有内容。对于他们来说,它只是写着'array‘。我到处寻找解决方案,但我似乎无法使用我在网上找到的解决方案。问题的一部分是,我不能100%确定将代码放在邮件表单中的“哪里”。我的PHP邮件表单如下:
<?php
// OPTIONS - PLEASE CONFIGURE THESE BEFORE USE!
$yourEmail = "myemailhere@myemail.com"; // the email address you wish to receive these mails through
$yourWebsite = "My Website name"; // the name of your website
$thanksPage = 'thanks.php'; // URL to 'thanks for sending mail' page; leave empty to keep message on the same page
$maxPoints = 4; // max points a person can hit before it refuses to submit - recommend 4
// --- DO NOT EDIT BELOW HERE -----------------------
$error_msg = null;
$result = null;
function isBot()
{
$bots = array("Indy", "Blaiz", "Java", "libwww-perl", "Python", "OutfoxBot", "User-Agent", "PycURL", "AlphaServer", "T8Abot", "Syntryx", "WinHttp", "WebBandit", "nicebot");
$isBot = false;
foreach ($bots as $bot) {
if (strpos($_SERVER['HTTP_USER_AGENT'], $bot) !== false) $isBot = true;
}
if (empty($_SERVER['HTTP_USER_AGENT']) || $_SERVER['HTTP_USER_AGENT'] == " ") $isBot = true;
exit("Bots not allowed.</p>");
}
if ($_SERVER['REQUEST_METHOD'] == "POST") {
function clean($data)
{
$data = trim(stripslashes(strip_tags($data)));
return $data;
}
$points = (int)0;
$badwords = array("adult", "beastial", "bestial", "blowjob", "clit", "cum", "cunilingus", "cunillingus", "cunnilingus", "####", "ejaculate", "fag", "felatio", "fellatio", "####", "fuk", "fuks", "gangbang", "gangbanged", "gangbangs", "hotsex", "hardcode", "jism", "jiz", "orgasim", "orgasims", "orgasm", "orgasms", "phonesex", "phuk", "phuq", "porn", "pussies", "pussy", "spunk", "xxx", "viagra", "phentermine", "tramadol", "adipex", "advai", "alprazolam", "ambien", "ambian", "amoxicillin", "antivert", "blackjack", "backgammon", "texas", "holdem", "poker", "carisoprodol", "ciara", "ciprofloxacin", "debt", "dating", "porn", "link=", "voyeur");
$exploits = array("content-type", "bcc:", "cc:", "document.cookie", "onclick", "onload", "javascript");
foreach ($badwords as $word) {
if (strpos($_POST['message'], $word) !== false) $points += 2;
}
foreach ($exploits as $exploit) {
if (strpos($_POST['message'], $exploit) !== false) $points += 2;
}
if (strpos($_POST['message'], "http://") !== false || strpos($_POST['message'], "www.") !== false) $points += 2;
if (isset($_POST['nojs'])) $points += 1;
if (preg_match("/(<.*>)/i", $_POST['message'])) $points += 2;
if (strlen($_POST['name']) < 3) $points += 1;
if (strlen($_POST['message']) < 15 || strlen($_POST['message'] > 1500)) $points += 2;
foreach ($_POST as $key => $value) {
$_POST[$key] = trim($value);
}
if (empty($_POST['name']) || empty($_POST['email']) || empty($_POST['message'])) {
$error_msg .= "Name, e-mail and comments are required fields. \n";
} elseif (strlen($_POST['name']) > 15) {
$error_msg .= "The name field is limited at 15 characters. Your first name or nickname will do! \n";
} elseif (!preg_match("/^[a-zA-Z-'\s]*$/", stripslashes($_POST['name']))) {
$error_msg .= "The name field must not contain special characters. \n";
} elseif (!preg_match('/^([a-z0-9])(([-a-z0-9._])*([a-z0-9]))*\@([a-z0-9])(([a-z0-9-])*([a-z0-9]))+' . '(\.([a-z0-9])([-a-z0-9_-])?([a-z0-9])+)+$/i', strtolower($_POST['email']))) {
$error_msg .= "That is not a valid e-mail address. \n";
} elseif (!empty($_POST['url']) && !preg_match('/^(http|https):\/\/(([A-Z0-9][A-Z0-9_-]*)(\.[A-Z0-9][A-Z0-9_-]*)+)(:(\d+))?\/?/i', $_POST['url'])) {
$error_msg .= "Invalid website url.";
}
if ($error_msg == NULL && $points <= $maxPoints) {
$subject = "Desktop Support Form Email";
$message = "You received this e-mail message through your website: \n\n";
foreach ($_POST as $key => $val) {
$message .= ucwords($key) . ": " . clean($val) . "\r\n";
}
$message .= 'IP: ' . $_SERVER['REMOTE_ADDR'] . "\r\n";
if (strstr($_SERVER['SERVER_SOFTWARE'], "Win")) {
$headers = "From: $yourEmail \r\n";
$headers .= "Reply-To: {$_POST['email']}";
} else {
$headers = "From: $yourWebsite <$yourEmail> \r\n";
$headers .= "Reply-To: {$_POST['email']}";
}
if (mail($yourEmail, $subject, $message, $headers)) {
if (!empty($thanksPage)) {
header("Location: $thanksPage");
exit;
} else {
$result = 'Your mail was successfully sent.';
}
} else {
$error_msg = 'Your mail could not be sent this time.';
}
} else {
if (empty($error_msg)) {
$error_msg = 'Your mail looks too much like spam, and could not be sent this time. [' . $points . ']';
}
}
}
function get_data($var)
{
if (isset($_POST[$var])) echo htmlspecialchars($_POST[$var]);
}我的HTML是标准格式。我已经将'name="feedback[]"‘赋值给复选框,因为我发现使用相同的名称和使用方括号可以方便地传递复选框信息。我只是不知道如何在上面的邮件表格中输入它。提前感谢您所能提供的任何帮助。
发布于 2013-11-29 10:08:02
由于您的复选框是在数组数组中发布的,因此在将值添加到消息中之前,您需要检查该值是否为'name="feedback[]"' - is_array($val)。这里有一个简单的例子-
foreach ($_POST as $key => $val) {
if (is_array($val)){
foreach ($val as $k=>$v) {
$message .= ucwords($key) . "[" . $k . "]: " . clean($v) . "\r\n";
}
}
else {
$message .= ucwords($key) . ": " . clean($val) . "\r\n";
}
}这会将复选框值设置为-
$message .= "FEEDBACK[0]: ....";
$message .= "FEEDBACK[1]: ....";https://stackoverflow.com/questions/20276669
复制相似问题