I'm trying to make this template print multiple rows and the framework i'm using utilizes flexy which i am not to familiar with, so does anyone have an idea on how I could do this?

here is the template so far

<table border="0" align=left cellpadding=5>
	<tr>
		<td FOREACH="product.detailedImages,image"><img src="{image.imageURL:h}" alt="{image.alt:r}" width=200></td>
	</tr>
</table>	

How I did this with smarty

<table border="0" cellspacing="5" cellpadding="5">
<tr>
{foreach from=$carma_content key=galid item=entry name=gals}
<td align="center">
<a href="show_video.php?galid={$galid}&section={$entry.secid}&uvar[count:1]={$uvar.count|default:24}"><img src="view_image.php?gal={$galid}&file=sample.jpg&width=150&height=150" border="0"><br>
{$entry.caption}</a><br>
Added: {$entry.active|date_format:"%x"}
</td>
{if ($smarty.foreach.gals.iteration) % 4 == 0}</tr><tr>{/if}
{/foreach}
</tr>
</table>

    Write a Reply...