add_row([$args = array()[, ...]])
Parameters:
$args (mixed) – An array or multiple strings containing the row values Returns:
CI_Table instance (method chaining) Return type:
CI_Table
Permits you to add a row to your table. You can submit an array or discrete params:
$this->table->add_row('Blue', 'Red', 'Green');
$this->table->add_row(array('Blue', 'Red', 'Green'));
If you would like to set an individual cell’s tag attributes, you can use an associative array for that