我需要在两个收件人之间平均分割联系表单中的表单结果。
E.g。第一个联系表单转到收件人1,下一个转到收件人2,下一个转到收件人1等。
只是想知道使用php,mysql和/或javascript做到这一点的最佳方法是什么。
我确定之前已经问过这个问题,但详细搜索没有产生任何结果。
答案 0 :(得分:0)
使用HTML隐藏输入类型。像这样,
<input type="hidden" name="recipient" value="1, 2, or 3 etc." />
页面上看不到隐藏的输入!它们只是帮助程序员识别特定的东西。
在PHP中,查找已定义的隐藏值并将消息发送给受尊重的收件人。做点什么,
<?php
if(isset($_POST['recipient'])) {
$theRecipient = $_POST['recipient']; //we want to know who will be the recipient
... //Perform your code!
}
&GT;