RE: [PHP] Persistent values between executions

2003-03-15 Thread Lance Lovette
The most efficient way to solve your problem is with a PHP extension I developed. It handles constants and provides a type of persistent variable too. It has been immensely useful for my projects. http://pwee.sourceforge.net/ Lance > -Original Message- > From: Mike Mannakee [mailto:[EMAI

Re: [PHP] Persistent values between executions

2003-03-10 Thread Mike Mannakee
Thanks, but what I need are static values accessible in the script, without having to fetch them from the database every single page view. They do occassionally change, but in the main they're fairly static. Mike "Rich Gray" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > > > I

RE: [PHP] Persistent values between executions

2003-03-10 Thread Rich Gray
> > I have some sets of values that I have stored in several tables in a mySQL > database. These don't often change, but are referenced on every > single page > view. While each call is quick, as a gross the load on the server is too > high. I would like to know if there is a way to have these s