if your php version>=5.4 it should work.
You may try thisif ($_POST)
{
$row_ids=$this->input->post('id');
$desc=$this->input->post('desc');
$spaces=$this->input->post('space');
$prices=$this->input->post('price');
$totals=$this->input->post('total');
$data = array();
for ($i = 0; $i < count($this->input->post('id')); $i++)
{
$data[$i] = array(
'row_id' => $row_ids[$i],
'desc' => $desc[$i],
'space' => $spaces[$i],
'price' => $prices[$i],
'total' => $totals[$i],
'code' => time()
);
}
$this->Home_model->create($data);
}
No comments:
Post a Comment