Yes it is possible.  A good suggestion is to tell the browser not to cache
PHP output by sending the following headers..

header('Cache-Control: no-cache, must-revalidate');
header('Pragma: no-cache');
header('Expires: 0');

You can also set these headers via META tags in your HTML.  You'll have to
do a search for those however.  Of course there's no guarentee this will
work with all browsers but for the most part they do their job.

-Kevin


----- Original Message -----
From: "eat pasta type fasta" <[EMAIL PROTECTED]>
To: "PHP-GENERAL" <[EMAIL PROTECTED]>
Sent: Thursday, June 13, 2002 1:55 PM
Subject: [PHP] Chaching issues


> is it possible that the server/browser caches the output and the code
> changes in php are not reflected. I am having wierd problems with fixing
> the code, and it often not responding for a while. When I cause a parse
> error, the php engine does inform me, however it seems to act up on bug
> fixes with variables and calulations.
> Is that possible?
>
> Thanks in advance.
>
> R.
>
>
> ________________________--__-______-______________
> eat pasta
> type fasta
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to