Posted by ZeldorBlat on 12/10/06 21:23
WJ wrote:
> Hi all,
>
> Can anyone tell me if it is possible to call a link to a file on the
> internet and to download the file automatically? Any sample code?
>
> Thanx,
> WJ
$link = 'http://www.foo.com/bar.html';
$contents_of_file = file_get_contents($link);
[Back to original message]
|