still wont work 🙁
althought i get this when i go over the link on file1.php
?PHPSESSID=bdff7c8f6cd2536ad39d69e6cb9bd6c7
but then file2 does not remember the language the user chose for file1.php!
this is what i have on top of file1 and file2:
<?
session_start();
if ($_GET[0] != "") {
$_SESSION['language'] = $_GET[0];
}
$language = $_SESSION['language'];
// lets start with setting the language
if ($lang == 'ita')
{
include"lang/ita.php";
}
elseif ($lang == 'eng')
{
include"lang/eng.php";
}
// end of setting language
?>