Hello everyone, am new to codeignitor, am getting trouble in storing values in array. below is my code
When i echo $data['name']; inside the loop, I get all the values but when I call it outside a loop I get only one
last value in the column. I want to pass this array with all it's values to another block of code.
any suggestion is welcomed.
PHP Code:
$query = $this->db->query('SELECT name FROM grade');
$data = array();
foreach ($query->result_array() as $row):
$data[] = array('name' => $row->name);
//echo $data['name']; //I get all the values in a column
endforeach;
echo $data['name']; //I get the only the last value
last value in the column. I want to pass this array with all it's values to another block of code.
any suggestion is welcomed.