I am using the following simple cgi script to generate a html page but I cannot see the image. I have a images directory in my cgi-bin folder and a file called arrow.gif but it doesn't show up on the page. Can someone tell me if the cgi looks ok ?


#!/usr/bin/perl

print "Content-type:text/html\n\n";
print <<EndHTML
<html><head><title>Test!</title></head>
<body>
<table border=1>
<tr>
<td><img src=\"images/arrow.gif\"></td>
</tr>
</table>
</body>
</html>
EndHTML