Advertisement
Guest User

Untitled

a guest
Jun 30th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 0.30 KB | None | 0 0
  1. product.php
  2. -----------
  3. $pointures = array(35, 36, 37, 38, 39, 40, 41);
  4. $smarty->assign('pointures', $pointures);
  5.  
  6. $smarty->display('product.tpl');
  7.  
  8.  
  9. product.tpl
  10. -----------
  11. <div>
  12.   test
  13.   {foreach from=$pointures item=pointure}
  14.     {$pointure|escape:'htmlall':'UTF-8'}
  15.   {/foreach}
  16. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement