私は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']));