Advertisement
Guest User

Shop - include

a guest
Jan 3rd, 2013
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <div class="call-to-action">
  2. <a href="?action=vip" class="blue button">Vip</a>
  3. <a href="?action=supervip" class="blue button">SuperVip</a>
  4. <a href="?action=itemy" class="blue button">Itemy</a>
  5. <a href="?action=doladuj" class="blue button">Doładuj</a>
  6. </div>
  7. <?php
  8.  
  9.  
  10.  
  11. if(isset($_GET['action'])){
  12.     if($_GET['action'] == 'vip'){
  13.         ...
  14.     } elseif($_GET['action'] == 'supervip'){
  15.         ...
  16.     } elseif($_GET['action'] == 'itemy'){
  17.         ...
  18.     } elseif($_GET['action'] == 'doladuj'){
  19.         ...
  20.     } else {
  21.     print '</div><div class="wrapper" style="text-align: center;width: 500px;">';
  22.     print "<h1>Niezydentyfikowana funkcja</h1>";
  23.     }
  24. }
  25. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement