Hello, I need a simple script wich connects to a remote file and copy it on local. The files I need to copy are images.
I tryed with copy($sourcefile, $destfile) but it does not want to work.
Ideas?
If you read the PHP Manual closely you'll find this. http://www.php.net/manual/en/features.remote-files.php
Basically it just says you must use fopen etc
Read it.