I am not usually a Smarty guy, so I\'m a bit stuck.
I want to echo the index of an array, but I want to increment it each time I echo it.
This is what I have...<
wouldn't the $index++ increment it after the echo?
$index++
try ++$index; or do $index++ BEFORE you echo it.
try ++$index;