Hello,
I am having a problem with caching...
I have a page which displays thumbnails.
The user can delete or add thumbnails to specific positions. Each position has a filename associated with it.
If the user deletes thumbnail from position one it disappears correctly. If users loads a different pic into pos 1 the old one appears again. If refresh is hit then the correct pic appears.
I think ie is going to the cached pic since the filenames are the same.
How can I force ie to reload the pic. I've tried:
<?php ob_start();
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
at the top of my page; however, it doesn't make a difference. Should I put something in the link that recalls the page?
Any help would be appreciated.
Thanks,
--SL