ok i have try many possibility but i miss something
i have a page wirh this link
<? echo "/php/switchlangue.php?url=".$_SERVER['PHP_SELF'];
?>">
in the switchlangue page
<? include('lib.php');
$url=$_GET['url'];
if ($g_langue=="en")
{ $g_langue="fr";
}else
{$g_langue="en";
}
header("location: $url");
?>
but my session variable dosent change
help plz