in reply to RE: Poor Man's Web Logger
in thread Poor Man's Web Logger
So what you should actually do is just use one of the images you already have on your site. You say that the image you want to use is at /home/username/www/cgi-bin/showpic/spacer.gif? That's not right. "showpic" is the name of the CGI script, so it can't also be a directory on the filesystem.
Let's say that you currently have an image like this on your web page:
And the actual filesystem location of this image is:<img src="/images/foo.gif">
You would replace the IMG tag with this:/home/bar/www/images/foo.gif
And, in showpic (the CGI script), you'd set the $home variable to:<img src="/cgi-bin/showpic/images/foo.gif">
Make sense?my $home = "/home/bar/www";
|
---|