http://www.perlmonks.org?node_id=452497


in reply to Re^3: CGI: Raw image data
in thread CGI: Raw image data

Just to clarify a little bit:
<img src="PATH_TO_CGI.cgi?whatever_params_youneed">

Replies are listed 'Best First'.
Re^5: CGI: Raw image data
by jhourcle (Prior) on Apr 29, 2005 at 01:11 UTC

    I'd actually suggest using PATH_INFO to pass around the parameters, as it makes it more likely that browsers will cache it, and not attempt to resubmit, because they see a QUERY_STRING, and shut off caching. (You can also send cache-control headers).

    And don't forget your ALT attribute:

    printf( '<img src="%s/%s" alt="%s" width="%i" height="%i" />', $cgi_url, @image{qw(id description width height)} );