hello,
i have problem with session, reading on the manual of php.net, i have
understood that:
PAGE1.PHP:
session_start ();
$_SESSION['myVar'] = myVarValue;
and for read in:
PAGE2.PHP
session_start ();
print $_SESSION['myVar'];
should be display the value of myVar.
Now, all this not work, someone explain me, where is my error? and correct
me? Thanks you for help.
Cooper.
i have problem with session, reading on the manual of php.net, i have
understood that:
PAGE1.PHP:
session_start ();
$_SESSION['myVar'] = myVarValue;
and for read in:
PAGE2.PHP
session_start ();
print $_SESSION['myVar'];
should be display the value of myVar.
Now, all this not work, someone explain me, where is my error? and correct
me? Thanks you for help.
Cooper.
Comment