JNameNotTaken
Programmer
Hi All
I have a Perl CGI script which generates HTML code dynamically.
for example: -
printHTML();
sub printHTML() {
return <<"end";
<IMG SRC="my_image.gif"><BR>
Some Text<BR>
end
}
My problem is that the .gif file is not being displayed when I post the script on the (linux) server.
The .gif file is in the same directory as the cgi file.
Permissions are set correctly on the .gif file.
If anyone can point me in the right direction here it will be very much appreciated.
Thanks
John
I have a Perl CGI script which generates HTML code dynamically.
for example: -
printHTML();
sub printHTML() {
return <<"end";
<IMG SRC="my_image.gif"><BR>
Some Text<BR>
end
}
My problem is that the .gif file is not being displayed when I post the script on the (linux) server.
The .gif file is in the same directory as the cgi file.
Permissions are set correctly on the .gif file.
If anyone can point me in the right direction here it will be very much appreciated.
Thanks
John