Hi Brad.
From what I have seen from the PHP manual
(user posts that is) on the subject
of cache-control, i was able to borrow this.
session_cache_limiter('nocache');
$cache_limiter = session_cache_limiter();
session_start();
But, the borrowed code came with a warning
about not needing the "session_start();".
Anyway, i implemented it in a page
and ran it from my Personal Web Server.
(PHP 4.03 on Win 98)
The results were outstanding !
The page did NOT get cached into
the Temporary Internet items folder.
But, when i tried to use the same code
on my hosted internet site,
(PHP 4.1.1 CGI module on WIN NT Server)
It did NOT WORK AT ALL, and it gave me
errors, telling me "permission denied(13)"
or something like that.
WHen i removed the above code,
the page rendered, and got cached.
🙁
So, i wish you the best of luck,
and let me know if you get it working.
( email: adam_t@ftnetwork.com )
Like i mentioned, it DID work on Win 98 PWS,
but i don't know why it did not work on the web...
Cheers;
Adam