Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.21 KB | None | 0 0
  1. <?php
  2.  
  3. switch($lang) {
  4.    
  5.     case "nl":
  6.         include("lang/nl.lang");
  7.         break;
  8.    
  9.     case "en":
  10.         include("lang/en.lang");
  11.         break;
  12.        
  13. }
  14.  
  15. function show($foo) {
  16.    
  17.     global $show;
  18.     echo $show[$foo];
  19.    
  20. }
  21.  
  22. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement