We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Category:Help | Category:Help::TipsAndTricks | Category:Help::Templates
Code Igniter supports use of multidimensional arrays as parameters to a table template.
<table class="tbl" > <thead> <tr> {fields} <th class='tbl_headercell'>{lbl}</th> {/fields} </tr> </thead> <tbody class="scrollingContent"> {rows} <tr> {cols} <td align="{align}">{value}</td> {/cols} </tr> {/rows} </tbody> </table>