Re: [PHP] Download image in PHP

2006-04-05 Thread Jochem Maas
Russell Jones 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 ju

Re: [PHP] Download image in PHP

2006-04-05 Thread Joe Henry
On Wednesday 05 April 2006 7:16 am, mbneto wrote: > 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

Re: [PHP] Download image in PHP

2006-04-05 Thread mbneto
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

[PHP] Download image in PHP

2006-04-05 Thread Russell Jones
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