Re: [PHP] Netscape caching problem

2001-01-22 Thread Larry Jaques
At 02:17 PM 1/17/01 -0600, you wrote: Oh! Yeah, Netscape is real goofy and tries to reload the page, but badly... I *think* you can dink around with the caching headers to convince Netscape that it's okay to use the existing copy to print instead of trying to get a fresh one. I used this, the

Re: [PHP] Netscape caching problem

2001-01-22 Thread Ernest E Vogelsinger
At 19:14 22.01.2001, Larry Jaques said: [snip] I used this, the sample from "Core PHP Programming" and it gives me a parse error starting on the first line of the change whether the header lines are before or after session_start or the session_ register

Re: [PHP] Netscape caching problem

2001-01-22 Thread Larry Jaques
At 07:19 PM 1/22/01 +0100, you wrote: At 19:14 22.01.2001, Larry Jaques said: [snip] I used this, the sample from "Core PHP Programming" and it gives me a parse error starting on the first line of the change whether the header lines are before or after

Re: [PHP] Netscape caching problem

2001-01-22 Thread Larry Jaques
At 11:30 AM 1/22/01 -0800, you wrote: You're missing a double quote at the gmdate phrase. Use header("Expires: " . gmdate("D, d M Y H:i:s") . " GMT"); Oops, right. That took care of the error but now the variables aren't passed to the next page. What's the sequence?