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

Popular posts from this blog

java - SNMP4J General Variable Binding Error -

windows - Python Service Installation - "Could not find PythonClass entry" -

Determine if a XmlNode is empty or null in C#? -