Re: [Phplib-users] Sess4 globals off (still) :)
Brought to you by:
nhruby,
richardarcher
|
From: Giancarlo <gia...@na...> - 2002-10-16 11:31:22
|
Il 13:20, mercoled=EC 16 ottobre 2002, Giancarlo ha scritto:
can you check through all the $GLOBALS and $_SESSION arrays in freeze, an=
d=20
see what is in there?
as
function freeze() {
reset ($GLOBALS);
foreach($GLOBALS as $k =3D> $v)
echo "GLOB : $k --> $v <br>"
reset ($_SESSION);
foreach($_SESSION as $k =3D> $v)
echo "SESS : $k --> $v <br>"
}
|