Articles → PHP CODEIGNITER → Libraries In Codeigniter
Libraries In Codeigniter
Purpose
Example
$this->load->library('table');
$data = array(
array('Name', 'Color', 'Size'),
array('Fred', 'Blue', 'Small'),
array('Mary', 'Red', 'Large'),
array('John', 'Green', 'Medium')
);
echo $this->table->generate($data);
Output
Click to Enlarge