I have a PHP page that is generated dynamically, but doesn't change very much.
For example, it generates a table of thumbnails of images, based on a variable. When I want to add more thubmnails I just change the variable.
So hence, the page only REALLY changes when I actually add thumbnails, which only happens maybe once a week.
However, I get the feeling that whenever a browser accesses the page it's getting the page over again from the server and processing it again. I'd rather have the remote browser pull the page from cache instead of calling my server again.
Is there anyway to set up the server to accomplish this or use some wacky comination of meta tags and php stuff?
Thanks,
Tim