Re: [PHP] "super" global variable

2001-05-15 Thread Chris Lee
this is something I never needed todo, but it works. these two files are on the same server, just under different domains. because I am using the same session_id() they share the same value. -- Chris Lee [EMAIL PROTECTED] ""Sigitas Paulavicius"" <[EMAIL PROTECTED]> wrote in message

Re: [PHP] "super" global variable

2001-05-15 Thread Alexander Wagner
Sigitas Paulavicius wrote: > Is it possible to declare some kind of "super" global variable in > PHP, which would be avaliable to all later PHP scripts/processes? As long as you use one server only (no load-balancing), you can use shared memory. http://php.net/shmop Try phpbuilder.com or google

[PHP] "super" global variable

2001-05-15 Thread Sigitas Paulavicius
Is it possible to declare some kind of "super" global variable in PHP, which would be avaliable to all later PHP scripts/processes? I suppose I could use a database or filesystem. But in this case of mine I need to store and retrieve some values very fast and consuming as little resourses as poss