Hmm...
it still seems as if the image receives nothing.
I have a php generated table right under the php generated image and the table recieves the parameter fine.
And if I go directly to the image through the URL with the parameter, it also works fine.
Its only when the image is within the index.php3 page that it doesn't work.
Steve Yelvington wrote:
It'll work just fine if you actually pass the value in the url. From HTML, you need to escape into PHP mode and echo the variable:
<img src="pic.php3?Stat=<? echo $Stat ?>">
This assumes that pic.php3 knows what to do with the argument and knows how to set the mime type correctly.