In my working cgi script, I get results based on a database that are displayed in a table. For example, the script in the background would as for "name" and the name of the item would then appear on a table to be viewed. If you add "number" to the elements in the script, a number would then be shown next to the name, etc. (see below for ex. of script.
@elements = ('name', 'number');
I have another part of the script, which places images on a results page, by calling each image "Image1." I want to add the image to the table where it has name, number, etc, but when I add "Image1" to the elements, all I get are urls to the location of the images, but the images themselves do not show up. The url showing up is the proper path to the image, so it is 1/2 making sense, but I want it to actually place the image itself on the page rather than a link to it. Any suggestions?
Thanks so much