in reply to
CGI, image loading
Check whether your script sends a Content-Type header. Any self respecting browser will not treat HTML that does not have text/html as content as in fact being HTML. You should be printing something like:
print "Content-Type: text/html\n\n";
[download]
Also note that it is better to
use CGI or die;
:).
CU
Robartes-
Comment on
Re: CGI, image loading
Download
Code
Replies are listed 'Best First'.
Re: Re: CGI, image loading
by
mkahn
(Beadle)
on Dec 03, 2002 at 08:13 UTC
That's a learned that learned very early, but thanks for the reply. I have also tried using cgi, and not; no difference
[reply]
In Section
Seekers of Perl Wisdom