我在一个页面上有几个相同的表格(用于评级)。表格如下所示:
<form id="contact" name="contact" action="#" method="post">
<input id="titel" name="titel">
<textarea id="msg" name="comment" class="txtarea"></textarea>
<button id="send">Send</button>
</form>
我通过 ajax 将表单数据发送到我想将所有键 => 值对存储在数组中的页面。
这是我在发送表单数据的 php 页面上的内容:
$arr = $_POST;
$array = array();
$array['titel'] = $arr['titel'];
$array['comment'] = $arr['comment'];
print_r($array);
当我发送第一个表单时,prin_r 给出: Array ( [title] => test [comment] => test2 )
这正是我想要的。但是当我发送下一个表单时,值不会插入到数组中,例如:
Array ( [titel] => test [comment] => test2
[titel] => test3 [comment] => test4
)
事实上什么也没发生。值保持不变。
非常感谢任何帮助!