How to grab photo from remote link and upload

Unheard

Diamond Member
Jan 5, 2003
3,774
9
81
I use wget to do it and call it through PHP. Example:

<?php
system('wget -P' . $imageDIR . ' ' . $imageURL, $output);
?>