Code Igniter User Guide Version 1.5.0b1


HTML Table Class

The Table Class provides functions that enable you to auto-generate HTML tables from arrays or database result sets.

Initializing the Class

Like most other classes in Code Igniter, the Table class is initialized in your controller using the $this->load->library function:

$this->load->library('table');

Once loaded, the Trackback library object will be available using: $this->table