I've a problem with session.
I my the page where I open my session I have this:
<?
// ouverture d'une session pour l'utilisateur
session_start();
$_session['pseudo_ident']=$pseudo_ident;
?>
In the following page I have put this for try my session
<?
// ouverture d'une session pour l'utilisateur
session_start();
$session['utilisateur']=$util;
echo $util;
echo "<br>";
echo $session['pseudo_ident'];
echo "<br>";
echo "ca marche!";
echo "<br>";
echo $_session['utilisateur'];
echo "<br>";
require ("configuration.inc.php");
?>
<a href="utilisateur_acceuil_util4.php" >Entrée</a>
and probebly its working because he is telling me all I want.
I must say I'm not going realy to another page with this one because it's an include().(This one returns me a button for entering).
Now when I go to my next page and open a session like this
<?
// ouverture d'une session pour l'utilisateur
session_start();
echo $_session['pseudo_ident'];
echo "<br>";
require ("configuration.inc.php");
?>
And realy I've put just this on my page for trying. He returns me nothing.
I don't understand anymore.
What I'm doing wrong?