Don't like ads? PRO users don't see any ads ;-)

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

By: wsoulrc on Apr 19th, 2012  |  syntax: PHP  |  size: 0.29 KB  |  hits: 160  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  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. ?>