Is it possible to load a image using:
?
for image.php:
$ima
Is it possible to load a image use:
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.