我想让 php 将 productsq 复选框作为数组并在消息中发送
这不是代码它只是它的一部分
这是html部分
<input type="checkbox" id="productsq" name="productsq[]" value="cardprinter"/>
<input type="checkbox" id="productsq" name="productsq[]" value="hotelsolution"/ >
这是php部分
<?php
$productsqu= implode(',',mysql_real_escape_string($_post['productsq']));
$message = '<html><body>';
$message .= '<table rules="all" style="border-color: #666;" cellpadding="10">';
$message .= "<tr style='background: #eee;'><td><strong>products:</strong>
$message .= "<tr style='background: #eee;'><td><strong>comments:</strong> </td> <td>" .clean_string($_POST['comments']) . "</td></tr>";
$message .= "<tr style='background: #eee;'><td><strong>selectionField:</strong> </td><td>" .clean_string($_POST['selectionField']) . "</td></tr>";
$message .= "<tr style='background: #eee;'><td><strong>products:</strong> </td><td>" .clean_string($productsqu) ."</td></tr>";
$message .= "</table>";
$message .= "</body></html>";
?>
我也尝试使用这个,但它没有用有没有办法让它正常工作???
$productsqu= implode(',',mysql_real_escape_string($_post['productsq']));