Hi,

If all you want to do is this as a suggestion (altough not php
related) you could call wget from your php script to fetch this image
without having to worry with other things.

Something like this

exec ('/path/to/wget http://www.foo.com/bar.jpg');

Of course you'd have to check if everything went fine.

On 4/5/06, Russell Jones <[EMAIL PROTECTED]> wrote:
> I have an image library on one site that I want to be able to access from
> another, but I actually want the image downloaded and cached to the new site
> (so that it doesnt keep taxing the image server).
>
> I allow the file() command to pull from other sites, can I do this with just
> the file('http://www.site.com/image.jpg";); - or how would i do this?
>
> Russ
>
>

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to