We have a website where an image is replaced every 15 minutes with another image that has the same name as it, stored on an FTP server.
Everyone is having problems with the browser caching an old image (and of course they're too lazy to hit "reload"), and it's not the server or a setting on the browser, it's just a latent problem.
So I found this code:
Code: Select all
<?php
print "<img src='http://www.derp.com/now.jpg?".time()."'>";
?>Anyway, I'd like to get these guys finished so I can move onto better and more interesting projects. Help if you can!
