Quantcast
Channel: CodeIgniter Forums - All Forums
Viewing all articles
Browse latest Browse all 14346

How to store array values in a foreach loop

$
0
0
Hello everyone, am  new to codeignitor, am getting trouble in storing values in array. below is my code

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 
 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.

Viewing all articles
Browse latest Browse all 14346

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>