Quote:
Originally Posted by spoonernyc
the section tags are for looping no?
So why would the
{$products[product].param00}
need to be in the midst of a loop?
|
The reason a section loop is required is $products is an array tha thas to be walk-throughed in order to return values.
{section name=product loop=$products}
means... loop over $products aray, with an index name of "product". Hence why {$products[product].param00} is used in a loop...
{$array[index].value}
