Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.13 KB | None | 0 0
  1. <?php
  2.  
  3. function show($foo) {
  4.    
  5.     global $lang;
  6.     include 'lang/' . $lang . '.lang';
  7.     global $show;
  8.    
  9.     echo $show[$foo];
  10.    
  11. }
  12.  
  13. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement