TableTemplates - bcit-ci/CodeIgniter GitHub Wiki
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>