> Here's the problem...
> After a deletion, when the question list page is reloaded, the browser uses
> the cached version of the page and the question which was just deleted is
> still displayed. If you refresh the page, the question disappears. So, I
> know that the deletion is working. I just need to know how to force the
> browser to NOT use the cached version of the page.

try these

header("Cache-Control: private");
header("Pragma: no-cache");

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

Reply via email to