Guest User

Untitled

a guest
Jan 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. function __autoload($class)
  3. {
  4. include_once 'classes/'.strtolower($class).'.class.php';
  5. }
  6.  
  7. $tradutor = new Tradutor();
  8.  
  9. if (isset($_GET['lang']))
  10. $tradutor->translate($_GET['lang']);
  11. ?>
  12.  
  13. <html lang='en'>
  14. <head>
  15. <title><?php echo _("Birds Web"); ?></title>
  16. <meta charset="utf-8" />
  17. <link type="text/css" rel="stylesheet" href="css/style.css" />
Add Comment
Please, Sign In to add comment