Advertisement
Guest User

Untitled

a guest
May 26th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <?php
  2. $select = $_POST["menu"];
  3. if ($select == "home"){
  4.   header("location: index.html");
  5.   }
  6. else if($select == "pkg"){
  7.   header("location: pkg.html");
  8.   }
  9. else if($select == "news"){
  10.   header("location: news.html");
  11.   }
  12. else if ($select == "history"){
  13.   header("location: history.html");
  14.   }
  15. else if($select == "links"){
  16.   header("location: links.txt");
  17.   }
  18. else{
  19.   echo "???";
  20. }
  21.  
  22.  
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement