Oct 20, 2003 #1 newphpbie Programmer Joined Oct 17, 2003 Messages 110 Location GB Hi All.. Is there a way of listing all the session variables? or something similar....?? Any help would be much appriciated...
Hi All.. Is there a way of listing all the session variables? or something similar....?? Any help would be much appriciated...
Oct 20, 2003 #2 KarveR MIS Joined Dec 14, 1999 Messages 2,065 Location GB I think print_r($_SESSION); should do it. ______________________________________________________________________ There's no present like the time, they say. - Henry's Cat. Upvote 0 Downvote
I think print_r($_SESSION); should do it. ______________________________________________________________________ There's no present like the time, they say. - Henry's Cat.
Oct 20, 2003 #3 skiflyer Programmer Joined Sep 24, 2002 Messages 2,213 Location US Just as a note to go with KarveR's excellent advice, if you do a Code: echo '<pre>'; before that print_r, the output will be easier to read. -Rob Upvote 0 Downvote
Just as a note to go with KarveR's excellent advice, if you do a Code: echo '<pre>'; before that print_r, the output will be easier to read. -Rob