If I define
$_SESSION['x']=5;
and later, use $x say, as,
$y = $x * $x;
will it work only if register_global s is set to On?
Am i correct in saying that usage of $x in place of $_SESSION['x'] will
not work if register_global s is Off?
TIA,
Regards,
Joseph S.
$_SESSION['x']=5;
and later, use $x say, as,
$y = $x * $x;
will it work only if register_global s is set to On?
Am i correct in saying that usage of $x in place of $_SESSION['x'] will
not work if register_global s is Off?
TIA,
Regards,
Joseph S.
Comment