Advertisement
whitestarrr

Untitled

Feb 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. <?php
  2.  
  3. $categories = explode(", ", $_GET['categories']);
  4. $tags = explode(", ", $_GET['tags']);
  5. $months = explode(", ", $_GET['months']);
  6.  
  7. echo '<h2>Categories</h2><ul>';
  8. foreach ($categories as $category) {
  9. echo '<li>' . $category . '</li>';
  10. }
  11. echo '</ul>';
  12.  
  13. echo '<h2>Tags</h2><ul>';
  14. foreach ($tags as $tag) {
  15. echo '<li>' . $tag . '</li>';
  16. }
  17. echo '</ul>';
  18.  
  19. echo '<h2>Months</h2><ul>';
  20. foreach ($months as $month) {
  21. echo '<li>' . $month . '</li>';
  22. }
  23. echo '</ul>';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement