I need to insert array value into table I have the forms which has array value.Now return only first character of an array 's' need to print 'sample1'
<input type="text" placeholder="First Name" name="first_name[]"/>
<input type="text" placeholder="Last Name" name="last_name[]">
<input type="text" placeholder="Age" name="age[]">
codeigniter code
$fname=$this->input->post('first_name');
foreach($fname as $name){
$n=$name['first_name']; //return only first character
}
print_r($fname) return an array
Array ( [0] => sample1 [1] => sample2 )