Hello Guys,
i'm new with Codeigniter,and whish to know if i can access any kind of iterator for the foreach with {}-Notation in my views.
The thing is, i'm having a list which should be devided after each x items.
example (what i would like to do:
<ul>
{list}
<li>{items}</li>
<? if ($iterator % 15 == 0) echo "</ul><ul>"; ?>
{/list}
</ul>
thanks in advice ;-)