The simple way to prevent image caching is to append time stamp with the name on image.
Ex-<img src=’image.jpg?<?php echo time() ?>’ />
In the above code browser understand a new image at every call. But HTML parser understands“image.jpg” for every call.
