Forum Moderators: coopster
I would like users to enter a url of an image and for a php script to copy the image to a local folder on my site.
You can use the copy function of PHP to do the task for you:
copy("http://www.example.com/myimage.jpg","myfolder/new.jpg");
Refer the manual [php.net] for further details.
Habtom