Advertisement
Guest User

Untitled

a guest
May 29th, 2015
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. $view = "home";
  2. if(!empty($_GET['view'])) {
  3.     $view = $_GET['view'];
  4. }
  5.  
  6.  
  7. $view = preg_replace("/[^a-z0-9_]/", "", $view);
  8.  
  9.  
  10. if ($view == 'home') {
  11.    // JAVASCRIPT FÜR ANIMATION WENN VIEW == HOME
  12.    echo '<script>..........</script>';
  13. }
  14.  
  15.  
  16. $incfile = "view_".$view.".inc.php";
  17. if(!file_exists($incfile)) {
  18.     $incfile = "view_notfound.inc.php";
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement