Advertisement
Guest User

Untitled

a guest
Sep 26th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Smarty 0.44 KB | None | 0 0
  1. header.tpl:
  2. <html>
  3.  <head>
  4.   <title>..</title>
  5.   ..css, scripts, etc..
  6.  </head>
  7.  <body>
  8.   <div id='header'>
  9.    ...
  10.   </div>
  11.  
  12. forum-topic.tpl:
  13. {include file='header.tpl'}
  14.   {foreach from=$posts item=post}
  15.    <div class='post'>
  16.     {$post->text}
  17.    </div>
  18.   {/foreach}
  19. {include file='footer.tpl'}
  20.  
  21. footer.tpl:
  22.  </body>
  23. </html>
  24.  
  25. viewtopic.php:
  26. // $posts already contains the posts from MySQL
  27. $smarty->assign('posts', $posts);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement