set_template($template)
Parameters: |
|
---|---|
Returns: |
TRUE on success, FALSE on failure |
Return type: |
bool |
Permits you to set your template. You can submit a full or partial template.
1 2 3 4 5 | $template = array ( 'table_open' => '<table border="1" cellpadding="2" cellspacing="1" class="mytable">' ); $this ->table->set_template( $template ); |
Please login to continue.