Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. {include file="header.tpl" title="Entry"}
  2.  
  3.  
  4. <form action="?form=Entry" method="post" >
  5. <table border="1">
  6. <thead>
  7. <th> ID </th>
  8. <th> name </th>
  9. <th> description </th>
  10. <th> updated_at </th>
  11. </thead>
  12.  
  13. <tbody>
  14. {foreach from=$id item=ids}
  15. <tr>
  16. <td>{$ids}</td>
  17. </tr>
  18. {/foreach}
  19.  
  20. {foreach from=$entrys item=Entry}
  21. <tr>
  22. <td>{$Entry}</td>
  23. </tr>
  24. {/foreach}
  25. </tbody>
  26. </table>
  27.  
  28. </form>
  29. {include file="footer.tpl"}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement