Hy,
I've a program that is running on one server, but I've images on another webserver!!!! I would like to get from the other webserver an image!!! How can I do that???
Thx,
Jo
1. <img src="http://otherserver.foo/images/bar.png"> 2. $f = fopen("http://otherserver.foo/images/bar.png", "rb"); header("Content-type: image/png"); while (!feof($f)) echo fgetc($f); fclose($f);