I'm stuck with a small warning/error.
This is the errore: Notice: Undefined index: la in ****/layout/header.php on line 10
//select language
if (isset($_GET['la'])) {
$_SESSION['la'] = $_GET['la'];
header('location:'.$_SERVER['PHP_SELF']);
exit();
}
//language
switch ($_SESSION['la']) {
case 'en':
require('lang/en.php');
break;
case 'it':
require('lang/it.php');
break;
default:
require ('lang/en.php');
break;
}
The problem is in the "switch". It all works but how can I fix the warning? I tried in some ways, but I went into ball!