
web varios idiomas parte 2 (www.wsoulr.com)
By:
wsoulrc on
Apr 19th, 2012 | syntax:
PHP | size: 0.29 KB | hits: 160 | expires: Never
<?php
if($web!=true) {
$idioma = substr($_SERVER["HTTP_ACCEPT_LANGUAGE"],0,2);
if($idioma=="es") { header('Location: http://www.miweb.com/es/'); } else { header( 'Location: http://www.miweb.com/en/' ); }
} else {
include("lang/{$lang}.php");
echo $txt['mensaje'][0];
}
?>