Ahoj,
mohl by nekdo, prosim, pokud možno stručně, poradit, jak umožnit volbu jazyka jakožto parametru v odkazu URL? (za jmenem skriptu, tzn. napr: /index.php?lang=cz[/en]).
Zkoušel jsem to přes funkce, definování podmínek (if (IsSet ...)) a stále to nejde.
Díky.
Honza
Mohl bys mi to, prosim, trochu přiblížit ? Díky.
H.
if($_GET['lang'] == "en")
Header("location: en/index.html"); // přesměruje na anglické stránky
else
Header("location: cz/index.html"); // přesměruje na české stránky
Tato podminka je i osetrena. Kdyz nezadas zadne parametry, tak se objevi ceska stranka. Totéž platí, pokud zadá jine hodnoty, nez cz/en
Nebo:
$lang = $_GET['lang'];
if (file_exists("$lang/index.html")):
header ("Location: $lang/index.html");
else:
header ("Location: cz/index.html");
endif;