tags:

views:

24

answers:

1

Image tag inside email message:

<img src="http://www.mydomain.com/image.php?lastest=1"&gt;

Part of image.php script:

case 'image/gif': header('Content-type: image/gif');$img=@imagecreatefromgif($image['src']);if($img) {imagegif($img);imagedestroy($img);}
break;

But how i can do the same with this image?

http://www.anotherdomain.com/image.gif

Thanks.

A: 

Using .htaccess and redirecting the request, with something like:

RewriteRule image.gif$ /image.php?lastest=1 [l]
TiuTalk
Yea i was thinking about redirect as well. I'll check if it's working.
Beck