我的页面上有一个表格。在“提交”时,我需要从表单中获取发布数据并将其存储在多维数组中。
这就是我到目前为止所拥有的。
//view
<input type="text" name="option[fname]" />
<input type="text" name="option[lname]" />
<input type="submit" />
//controller
$data['myarray'] = $this->input->post('options', TRUE);
$this->load->view('template',$data);
然后在“提交”时,我们返回视图并查看我们添加的内容。
//view
<?php
foreach($myarray as $row){
echo $myarray['fname'] . '<br>' . $myarray['lname'];
}
?>
我希望能够在每次点击“提交”时继续添加到数组中。现在它只显示最后输入的数据。我怎么做?谢谢?