I've been playing around with creating JPEGs in PHP and wrote a little script to create an image of a text string argument. the problem is, when it displays the image, I have to refresh once since it's displaying the file from the browser cache. I have it echo an IMG tag with src="z.jpg" and z.jpg changes each time but Internet Explorer uses the cached version so I have to refresh to show the new text.
is there a way I can get IE to not look at the cache? I thought if the URL was different it wouldn't, and the URL is different because the query string to the PHP script is different but it's not working