Advertisement
Guest User

Untitled

a guest
Nov 10th, 2010
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. test.php
  2. <?php
  3. require_once('tiki-setup.php');
  4. $myArray = array(1,2,3,4,5);
  5. $smarty->assign('myArray', $myArray);
  6. $smarty->display('test.tpl');
  7.  
  8. templates/test.tpl
  9. {foreach from=$myArray item=i name=foo}
  10. {cycle name=outsideif values="a,b"}
  11. {if !$smarty.foreach.foo.last}{cycle name=insideif values="c,d"}{/if}
  12. {/foreach}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement