|
-
Oct 9th, 2001, 03:20 PM
#1
Thread Starter
Addicted Member
Cannot see image
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|