I have a webpage with this tag:
<img src="http://www.foobar.com/image.php">
This script, image.php, contains this code:
<?
header("Location: http://www.foobar.com/logger.cgi?param1|param2|param3");
?>
logger.cgi log the IP address of the visitor, and sends an image (gif) back. On all browsers/platform, everything works fine. But on IE5 on Macintosh, I get a broken image on my page..?
I tried replacing my header() function with a include(), but then, it's the webserver IP that's logged! Oops!
Any idea what might cause the broken image on IE5 Macintosh, or how to solve this ?
Thank you,
...gb