0

好的,我已经用谷歌搜索并搜索了更多信息,但我被卡住了。我对 php 的想法真的很陌生,但我终于让我的表单做我想做的事,除了当我将它发送到我的电子邮件时,它只显示我选中的框之一。我真的很讨厌寻求帮助,但就这样吧。

这是我的html:

<tr>
 <td valign="left"><p>Please check all items needed *</p>
   <p class="style2">(Default order will be one of each checked item unless otherwise indicated in the comments section.)</p>
 <td valign="top">
     <div align="left">

 <input type="checkbox" name="supplies[]" value="black_toner" /> Black Toner<br />
 <input type="checkbox" name="supplies[]" value="cyan_toner" /> Cyan Toner<br />
 <input type="checkbox" name="supplies[]" value="magenta_toner" /> Magenta Toner<br />
 <input type="checkbox" name="supplies[]" value="yellow_toner" /> Yellow Toner<br />
 <input type="checkbox" name="supplies[]" value="black_drum" /> Black Drum<br />
 <input type="checkbox" name="supplies[]" value="cyan_drum" /> Cyan Drum<br />
 <input type="checkbox" name="supplies[]" value="magenta_drum" /> Magenta Drum<br />
 <input type="checkbox" name="supplies[]" value="yellow_drum" /> Yellow Drum<br />
 <input type="checkbox" name="supplies[]" value="waste_toner" /> Waste Toner<br />
 <input type="checkbox" name="supplies[]" value="staples" /> Staples<br />
     </div>
   <td valign="top"> </td>
</tr>

这是我的 php

 }
    $email_message = "Form details below.\n\n";

function clean_string($string) {
  $bad = array("content-type","bcc:","to:","cc:","href");
  return str_replace($bad,"",$string);
}

$email_message .= "First Name: ".clean_string($first_name)."\n";
$email_message .= "Last Name: ".clean_string($last_name)."\n";
$email_message .= "Company: ".clean_string($company)."\n";
$email_message .= "Location: ".clean_string($location)."\n";
$email_message .= "Machine Model: ".clean_string($machine_model)."\n";
$email_message .= "Supplies: ".clean_string($supplies)."\n";
$email_message .= "Email: ".clean_string($email)."\n";
$email_message .= "Telephone: ".clean_string($telephone)."\n";
$email_message .= "Comments: ".clean_string($comments)."\n";


// create email headers
$headers = 'From: '.$email_from."\r\n".
'Reply-To: '.$email_from."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $email_message, $headers);  
?>

就像我说的,我已经尝试了我认为的一切,但显然有些地方是错误的。我需要添加什么到我的 php/html 或更改以从我的复选框中获取所有响应,而不仅仅是一个?如果有人有任何建议,我将不胜感激。(请尽可能具体,就像我说的,我是新手)谢谢!

4

4 回答 4

0

$supplies 是一个数组,因为您将 [] 置于其形式中。您必须使用函数 implode 将它们分开:

$supplies = implode(",", $supplies);
于 2012-07-25T20:55:23.740 回答
0
$string = implode(", " $_POST['supplies']);
于 2012-07-25T20:55:39.460 回答
0

您没有显示分配 $supplies 的位置,但它是一个数组。分配时试试这个。

$supplies = implode(',',$_POST['supplies']);
于 2012-07-25T20:55:49.287 回答
0

http://www.kavoir.com/2009/01/php-checkbox-array-in-form-handling-multiple-checkbox-values-in-an-array.html

1)这个HTML:

<input type="checkbox" name="tags[]" value="1" />
<input type="checkbox" name="tags[]" value="2" />
<input type="checkbox" name="tags[]" value="3" />
<input type="checkbox" name="tags[]" value="4" />

2) ...变成这个PHP:

print_r($_POST['tags']);
// output
Array
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
)

3)在您的情况下,如果您在表格中只检查了“黑色碳粉”和“青色鼓”,那么您应该在数组中返回的唯一值是“black_toner”和“cyan_drum”。只需修改您的代码以处理您获得的值。

4)我剪切/粘贴了您的表格,并将“action =”设置为调用“phpinfo()”的脚本。以下是 phpinfo 的结果,仅检查 black_toner 和 cyan_drum:

_POST["supplies"]

Array
(
    [0] => black_toner
    [1] => cyan_drum
)
于 2012-07-25T20:59:29.087 回答