CodeIgniter Forums
sequence number - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: sequence number (/showthread.php?tid=12456)



sequence number - El Forum - 10-19-2008

[eluser]aataqwa[/eluser]
Hello All....

Quote:How to make sequence number in view???? if in smarty {counter}, how about CI???

Thank You.


sequence number - El Forum - 10-20-2008

[eluser]Pascal Kriete[/eluser]
I'm not sure what you're trying to accomplish. Is this in a loop?
Code:
<ul>
&lt;?php
$x = 0;
foreach($something as $some => $thing): ?&gt;
<li>
    &lt;?= $x++ ?&gt;
</li>
&lt;?php endforeach; ?&gt;
</ul>