Hi,
assuming I have an url for an image on another webserver. I need to save this image, not the url, onto my own webserver.
How do I do that?
Thanks!
The quick way.
$image = file_get_contents($url); $handle = fopen('picutre.jpg', 'wb'); fwrite($handle, $image);
oo. thanks!
Great. 🙂
Please mark this thread resolved using the thread tools if you have no more questions.