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 is a session variable)
 >
 > class test
 > {
 >     var $global['error'];
 > }


This is wrong.

 >
 > class test
 > {
 >     var $HTTP_SESSION_VARS['error'];
 > }


This is wrong thing to do also


> class test
> {
>     session_register("error");
>     var $error;
> }
> 

This is also wrong, too....

Try to find example code. There are many of them on net.

-- 
Yasuo Ohgaki


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to