php - Accessing data from form array with codeigniter -
i have form this
<form> <input type="text" name="personal_details[]" /> <input type="text" name="personal_details[]" /> <input type="text" name="pictures[]" /> <input type="text" name="pictures[]" /> </form>
with php can access data this
$name = $_post['personal_details'][0]; $surname = $_post['personal_details'][1]; etc.. etc
is possible task codeigniter input class ?
they work same.
$personal_details = $this->input->post('personal_details'); $pictures = $this->input->post('pictures'); $name = $personal_details[0]; $surname = $personal_details[1];
Comments
Post a Comment