Advertisement
wsoulrc

web varios idiomas parte 2 (www.wsoulr.com)

Apr 19th, 2012
853
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.     if($web!=true) {
  3.         $idioma = substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2);
  4.         if($idioma=="es") { header('Location: http://www.miweb.com/es/');  } else { header( 'Location: http://www.miweb.com/en/' );  }
  5.     } else {
  6.         include("lang/{$lang}.php");
  7.         echo $txt['mensaje'][0];
  8.     }
  9. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement