CodeIgniter Forums
looping inside table function - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Libraries & Helpers (https://forum.codeigniter.com/forumdisplay.php?fid=22)
+--- Thread: looping inside table function (/showthread.php?tid=46713)



looping inside table function - El Forum - 11-12-2011

[eluser]Unknown[/eluser]
Hi all,
I'm new here. I want ask about code.
is it possible for using looping inside table function ?
here's the code

Code:
foreach($anggota->result() as $rows)
$this->table->add_row(                    

        $rows->EMPLOYEE_NAME,
        "<font color=\"red\">".$rows->lokasi_disp."</font>",

        --&gt; i want add looping data here. so, each row in this column will have some looping data and the data is generated from database in model,

$rows->status_tugas
);

thanks Big Grin