Home > table

table

Table is a project mainly written in PHP, it's free.

table class

Table Creation

Basic usage

$table = Witty::instance('Table');

$table->set_heading('Name', 'Color', 'Size');
$table->add_row('Fred', 'Blue', 'Small');
$table->add_row('Mary', 'Red', 'Large');
$table->add_row('John', 'Green', 'Medium');

echo $table->generate();

detail: http://codeigniter.com/user_guide/libraries/table.html

Previous:validation