我有以下语法:
控制器
function new_auto_spread_details()
{
$postinfo = array();
$postinfo[] = $this->input->post('customer')
$postinfo[] = $this->input->post('period')
$this->load->view('sales/new_autospread_order_lines',$postinfo);
}
看法
<?php echo $postinfo['customer']; ?>
<?php echo $postinfo['period']; ?>
这不会输出任何东西。似乎添加$this->input->post('customer')
到数组 postinfo 是不正确的。
如何正确将此信息添加到 postinfo 数组并从视图中调用它?
一如既往地感谢...