Misdan
Misdan

Reputation: 153

How to destroy cache image when change the picture

I have a home page where there is an image slider. every day the picture must be changed. I think by changing the image with the same name it will be easier every day but when I have finished changing the image I have to press ctrl + f5 first.

How to solved this problem? This is caching problem?

I use codeigniter

Upvotes: 0

Views: 121

Answers (1)

djay1988
djay1988

Reputation: 107

When Generating the image URL add base_url($image_path)."?t=".date("Ymd"); This will request the server a fresh image daily.

Upvotes: 2

Related Questions