Hi!
The $defaultLang is just for the cases where no language is set.
$defaultLang = 'en';
if(!isset($_SESSION['lang']))
$_SESSION['lang'] = $defaultLang;
if($_SESSION['lang'] == 'en') {
// Set the english header and include the english content.
}
else if($_SESSION['lang'] == 'gr') {
// Set the german header and include the german content.
}
// ......