I don't know what wrong why I cannot put the image in my folder?
Here's my php code:
<?php
$img = 'http://ecx.images-amazon.com/images/I/41pg1dHauUL._SL75_.jpg';
$target_path = 'product-images/';
$target_path= $target_path.basename($img);
if(move_uploaded_file($img,$target_path)){
echo 'Success';
}
else {
echo 'Error.';
}
?>