![]() |
HowTo generate several table using CI Table library ? - Printable Version +- CodeIgniter Forums (https://forum.codeigniter.com) +-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20) +--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23) +--- Thread: HowTo generate several table using CI Table library ? (/showthread.php?tid=23683) |
HowTo generate several table using CI Table library ? - El Forum - 10-19-2009 [eluser]minoh[/eluser] Hello guys, I'm trying to use CI Table library to generate 2 tables elements. the problem is that in the second table i get seconde table data but also first table data. this is my code : Code: // first table HowTo generate several table using CI Table library ? - El Forum - 10-19-2009 [eluser]BrianDHall[/eluser] You're missing clear(): Quote:this->table->clear() From: http://ellislab.com/codeigniter/user-guide/libraries/table.html HowTo generate several table using CI Table library ? - El Forum - 10-19-2009 [eluser]minoh[/eluser] [quote author="BrianDHall" date="1255982613"]You're missing clear(): Quote:this->table->clear() From: http://ellislab.com/codeigniter/user-guide/libraries/table.html[/quote] Thanks a lot ! |