I tried everything to get this code below to work with codeigniter.
$arrival_date = $_POST['arrival_date'][$re_id]
Here's what I do it in codeigniter:
$arrival_date = $this->input->post('arrival_date'[$re_id]);
$arrival_date = $this->input->post('arrival_date')[$re_id];
$arrival_date = $this->input->post('arrival_date[$re_id]');
All the above three code failed.
Anyone know how to do this in codeigniter?