I have a fluid template and i am passing an array to this fluid template. I need to manipulate that array with in that fluid template file. My aim is to print each value of that array in the template file as shown below:
<?php
foreach($array as $value){
echo $value;
}
?>
<f:section name="main">
<f:for each="{AccordionList}" as="accordionList" key="accordionTitle">
<div class="right-catdownload">{accordionTitle}</div>
<f:for each="{accordionList}" as="accordionListArry" key="accordionSubtitle">
</f:for>
</f:for>
</f:section>