im new to codeignitor and suffering to store a database value in array and pass it through other page
$query = $this->db->query("YOUR QUERY");
foreach ($query->result() as $row)
{
echo $row->title;
echo $row->name;
echo $row->body;
}
instead of echo it should be stored in array and pass it to other page as a argument.. is it possible??