Im not able to get the cookie variables from inside a class function. Is there anyone thar knows how this is done???
Regards, Johnny
Inside your function are you declaring your cookie variables as global?
try something like this:
class MyCookies{ function MyCookies() { global $HTTP_COOKIE_VARS;
/* do something with cookies */
} }
hth stew
That really did the trick. :-)
I've allvays thought globals were global, but obviously not in PHP.
Thank you for your help.. :-D
Johnny.