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.

Is it possible to load a image using:

<img src="image.php?image_id=1">

?

for image.php:

$image_id = $_GET['image_id']; 
echo "image".$image_id.".png"; 
share|improve this question
Don't you mean src? I just corrected it. – Shamim Hafiz May 17 '11 at 8:56
answer to your question is yes – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè May 17 '11 at 8:57
Are you sure you want to use server's resources to read then echo an image? I wouldn't be so sure about that... – Bogdan Constantinescu May 17 '11 at 9:34

6 Answers

up vote 5 down vote accepted

you must return a valid image, use file_get_contents or readfile for get the conent of image then output to browser

 header("Content-Type:image/png");

    $image_id = $_GET['image_id']; 

    if(is_file($file = "image".$image_id.".png") ||  is_file($file = "no_image.png"))
        readfile($file); 
share|improve this answer
1  
Don't serve up images with a text/html content-type. – Quentin May 17 '11 at 8:59
1  
output still needs the headers – l̕aͨŵƦȆ̴̟̟͙̞ͩ͌͝ƞCͭ̏ȇ ƇhƐȓ0nè May 17 '11 at 8:59
Or, if this is not to hide the true image location, or if the image is not created on the fly, one could easily use the Location header to redirect to the image. (If it's accessable through http) – Yoshi May 17 '11 at 9:10

If you have the png contents in the database, follow the other answers. If all you need is the id from the database, simply <img src="image<?=$image_id?>.png">

share|improve this answer

No, this is not possible that way. You would have to write the contents of the image file to the output stream instead.

share|improve this answer

Is it possible to load a image use: <img src="image.php?image_id=1">

Yes. URLs are URLs. It is content-type that determines content, not any characters in the URL itself.

$image_id = $_GET['image_id']; echo "image".$image_id.".png";

Not like that. You either have to read the image file in and then output it with a suitable content-type, or redirect (with a location header) to a static image.

share|improve this answer

You have to change the header content-type and print the contents of the image file. Here is an example for your image.php file:

$image_id = $_GET['image_id']; 
$filename = "image".$image_id.".png"; 
header('Content-Type: image/png');
print file_get_contents($filename);
share|improve this answer

one liner....

echo (file_exists($_GET['image_id'])) ? header("Content-Type:image/png").readfile($_GET['image_id']).die() : false;
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.