Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.';
}

?>
share|improve this question
3  
You should have your client reconsider. There is no benefit to storing the image in a database. Operations on the table will be very slow. – SimpleCoder Oct 10 '12 at 1:29

2 Answers

up vote 1 down vote accepted

How about fetching the image using cURL and then saving it to the database as a BLOB?

share|improve this answer
I thought blob was for binary data, isn't an image source text? – Adam Oct 10 '12 at 1:29
for example this is the image ecx.images-amazon.com/images/I/41pg1dHauUL._SL75_.jpg – Sui Go Oct 10 '12 at 1:30
1  
@Adam the OP stated that he can not store the path to the database. Then an image (the data) is binary, isn't it?? ;) – Ako Oct 10 '12 at 1:31
Yes it is, storing it on a blob column should fit what the OP needs. Upvoted. – Mt. Schneiders Oct 10 '12 at 1:31
3  
Images certainly aren't text; BLOB is the column type to use. Try opening an image in WordPad. – SimpleCoder Oct 10 '12 at 1:32
show 5 more comments

From what I can tell in your code, you're not actually getting the image. You can download the image source to your server in several ways.

$image = file_get_contents($URL);

or

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $URL);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$image = curl_exec($ch);
curl_close($ch);

I believe that cURL is faster, if that matters. Then save the image source in a file,

file_put_contents( '/path/to/file/myimage.jpg', $image );

I hope that helps.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.