Re: [PHP] 'application' variables not available? Alternatives?

2007-09-08 Thread david
Thanks very much for that Vidyet. This is going to be a massive help. Vidyut Luther [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Hi David, I'd say your best bet is to use memcached. This will allow the variables you specified to stay in memory, and be accessible to all other

[PHP] 'application' variables not available? Alternatives?

2007-09-07 Thread david
Hi I am looking at converting a large project from ASP to PHP, and have read that there is no equivalent of global.asa in PHP. It is probably easiest if I describe the problem starting with how the ASP does it: Project uses global.asa to load a lot of 'global' constants and variables into

Re: [PHP] 'application' variables not available? Alternatives?

2007-09-07 Thread Vidyut Luther
Hi David, I'd say your best bet is to use memcached. This will allow the variables you specified to stay in memory, and be accessible to all other applications. http://www.danga.com/memcached/ Keep in mind though, just because ASP does it in one way, you don't want to do a bit for bit copy. You