set_heading([$args = array()[, ...]])
Parameters: |
|
---|---|
Returns: |
CI_Table instance (method chaining) |
Return type: |
CI_Table |
Permits you to set the table heading. You can submit an array or discrete params:
1 2 3 | $this ->table->set_heading( 'Name' , 'Color' , 'Size' ); $this ->table->set_heading( array ( 'Name' , 'Color' , 'Size' )); |
Please login to continue.