Guest User

Untitled

a guest
Mar 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <table>
  2. <php foreach ($all as $one) :?>
  3. <?
  4. $all = explode(";", $one);
  5. ?>
  6. <tr>
  7. <td><?php echo $all[0] ?></td>
  8. <td><?php echo $all[1] ?></td>
  9. <td><?php echo $all[2] ?></td>
  10. </tr>
  11. </table>
  12.  
  13. <table>
  14. <tr tpl-foreach="$all as $one">
  15. {{Here should be the explode function?}}
  16. <td>{{ }}</td>
  17. <td>{{ }}</td>
  18. <td>{{ }}</td>
  19. </tr>
  20.  
  21. </table>
Add Comment
Please, Sign In to add comment