In CodeIgniter,adding array into another array with key value pairs.
and I have an array in this format
Array
( [0] => Array (
[memberName] => Ram
[address] => Abc
[phoneNo] =>456422313
[email] => [email protected]
[age] => 25
)
)
I have to insert this array into $data['memberInfo'] with key values.
So when I echo $memberInfo->memberName in my view, I could get the correct value of memberName;
