Hi, my system allow users to give the image url (means the image they provide is hosted elsewhere). So is it possible to reupload that image to my server using php? thanks a lot
I guess you should use these functions: $image = file_get_contents($remote_url); file_put_contents($filename,$image); PHP: