我的联系表格有问题。 我在联系表单中使用动态表单字段,这非常完美。 现在的问题在电子邮件中看起来不太好。 它看起来像:Value Value1 Value Value1 ...
但我希望如此:
Value Value1
Value Value1
...
我的代码:
�
任何人都可以帮助我。感谢。
答案 0 :(得分:2)
只要2个数组的长度相同,你就可以做到这一点
if (isset($_POST["submit"])) {
$wareString = "";
foreach($_POST['ware'] as $key => $value) {
// the ' = ' . is optional
$wareString .= $value . ' = ' . $_POST['warenanzahl'][$key] . '<br>';
// or if it is not a HTML email
$wareString .= $value . ' = ' . $_POST['warenanzahl'][$key] . PHP_EOL;
}
$from = 'Form';
$to = 'test@test.de';
$subject = 'Message';
$body ="Store: Test\n Message:\n $wareString";
. . .
}