PHP Code:
$help="Help";
When you choose a language, say, English the page jumps to a file with this script:
PHP Code:
session_start();
header("Cache-control: private"); // IE 6 Fix.
$name = $_POST['language'];
$_SESSION['lang'] = $name;
if($_SESSION['lang']=='dan'){
include "../instlang/install.language.danish.php";
}
if($_SESSION['lang']=='eng'){
include "../instlang/install.language.english.php";
}
if($_SESSION['lang']=='ger'){
include "../instlang/install.language.german.php";
}
?>
When your choise of language has been determined, your supposed to go to the first install screen.
Qustion:
How do I via the session tell the first install screen what kind of language it should include and shoud I direct the user to the first install screen via a header?
Thank you.

