In HTML, I can insert an image from URL using the img tag and src attribute.
<img src="apple.jpg" />
But if my src contains a query string, then the browser displays a little broken image icon rather than the desired image. For example
<img src="http://fruitphotos.com/?type=apple" />
wouldn't work, even when that query returned an image file.
How can I insert image files returned from such queries?