[PHP] Re: session class

2001-12-27 Thread Chris Hall
session variables are accessible the same as when you set them : session_register('temp'); $temp = 1; on another page: session_start(); /* so that you can access your session variables... echo "$temp"; /* this will echo "1" and so you know you cannot define a variable for your class inside a f

[PHP] Re: session class

2001-12-21 Thread Yasuo Ohgaki
Christian Haines wrote: > (sorry if this has been posted a thousand times..i am having problems > posting) > > hi all, > > how does one access and manipulate session variables from within a class? > i have hunted the net high and low but received no relief. > > i have tried (where error