Is that what you want to achieve?
$source = file_get_contents("http://www.mlbtraderumors.com/images/logo.png");
file_put_contents("images/logo.png", $source);
It will copy the image to your images folder ..
5
solved How to upload image from another site [closed]