我在我的表单中使用jquery-cloneya.min.js来克隆多个输入字段,例如:
名字 - 姓氏
我的工作几乎完美。这些字段按预期重复,我的表单处理使用以下内容发送结果:
处理器:
$tenenatfirstname = $_POST["tenenatfirstname"];
if ($tenenatfirstname[0]!=""){
$tenenatfirstnameeach = implode( ', ', $tenenatfirstname);
}
$tenenatlastname = $_POST["tenenatlastname"];
if ($tenenatlastname[0]!=""){
$tenenatlastnameeach = implode( ', ', $tenenatlastname);
}
电子邮件处理程序:
Tenants first name: '.$tenenatfirstnameeach.'<br>
Tenants last name: '.$tenenatlastnameeach.'<br>
这会在生成的电子邮件中吐出:
Tenants first name: John, Michael, Sarah
Tenants last name: Jones, Smith, Camm
但是你可以看到所有的名字都在一行上,所有姓氏都是分开的。
无论如何将这些绑定在一起,所以姓氏对应正确的名字,如:
Tenants name: John Jones, Michael Smith, Sarah Camm
我知道我可以简单地将First Name字段变为Full Name,但是对于我自己在PHP中的技能构建(因为我是初学者),如果可能的话,我很乐意找到解决方法。
答案 0 :(得分:0)
你能连接它们吗? IE:
Tenants first name: '.$tenenatfirstnameeach.'<br>
Tenants last name: '.$tenenatlastnameeach.'<br>
Tenants full name: '.$tenenatfirstnameeach. ' ' .$tenenatlastnameeach.<br>