Advertisement
Guest User

Untitled

a guest
Feb 18th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <main class="left">
  2.  
  3. <?php
  4. if(isset($_GET['section'])) {
  5. $section = $_GET['section'];
  6. switch ($section) {
  7.  
  8. case '0':
  9. include 'home.txt';
  10. break;
  11. case '1':
  12. include 'studies.txt';
  13. break;
  14. case '2':
  15. include 'personal.txt';
  16. break;
  17. case '3':
  18. include 'link.txt';
  19. break;
  20. default:
  21. include 'home.txt';
  22. }
  23.  
  24. }
  25.  
  26. else {
  27. include 'home.txt';
  28. }
  29.  
  30. ?>
  31.  
  32. </main>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement