How do I do "while fetching" in CodeIgniter?
1 answer
After executing the query, use ->query()
either the "active record" class ->get()
using the method result_array
.
$query = $this->db->query("SELECT * FROM aTable");
foreach($query->result_array() as $row){
echo $row['someContent'];
}
Docs: http://ellislab.com/codeigniter/user-guide/database/results.html
+8
source to share