How to output image via php from another domain
- by Beck
Image tag inside email message:
<img src="http://www.mydomain.com/image.php?lastest=1">
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.