session_start(); include 'funciones.php'; include 'funciones2.php'; include 'check.php' ; global $idioma ; if (isset($_GET['lg']) && $_GET['lg'] <> "") { $_SESSION['idioma'] = $_GET['lg'] ; $idioma = $_GET['lg'] ; include ("idioma-$idioma.php") ; } else { $_SESSION['idioma'] = "sp" ; $idioma = "sp" ; include 'idioma-sp.php'; } ?>
|