Hi,
I have an image tag in my html with a src pointing to a php script.
The php script finds the url of the image from a paramater in the query string.
How can I return the image data to the html page?
[HTML]<img src="phpScript. php?id=12321321/>[/HTML]
[PHP]<php?
$id = $_REQUEST["id"];
$img_url = someFunction($i d);
echo imageData????
[/PHP]
Thanks
I have an image tag in my html with a src pointing to a php script.
The php script finds the url of the image from a paramater in the query string.
How can I return the image data to the html page?
[HTML]<img src="phpScript. php?id=12321321/>[/HTML]
[PHP]<php?
$id = $_REQUEST["id"];
$img_url = someFunction($i d);
echo imageData????
[/PHP]
Thanks
Comment