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";
|
|
you must return a valid image, use file_get_contents or readfile for get the conent of image then output to browser
|
|||||||||||
|
|
If you have the png contents in the database, follow the other answers. If all you need is the id from the database, simply |
|||
|
|
|
No, this is not possible that way. You would have to write the contents of the image file to the output stream instead. |
|||
|
|
Yes. URLs are URLs. It is content-type that determines content, not any characters in the URL itself.
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. |
|||
|
|
|
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:
|
|||
|
|
|
one liner....
|
|||
|
|