Hello,
I’m brand new to code igniter and I am wondering if someone here can provide a demo of using nested loops for data presentation using the template system in ci. Here’s a template to show you what I mean. How would I get the template engine to display data in a multidementional array containing multiple color rows containing multiple color cells?
Thanks for the help
<html>
<head>
<title>Color Table Demo</table>
</head>
<body>
<table>
{color_row}
<tr>
{color_cell}
<td width=“15” bgcolor=”#{color}”> <font color=”#{font_color}> {color} </font> </td>
{/color_cell}
</tr>
{/color_row}
</table>
</body>
</html>
