CLICKABLE THUMBNAIL IMAGES

Rather than having a list of links pop up when a user completes a search of your product catalog, you may wish to display thumbnail images of your products that the user can click on for further information:

Thumbnails

This is accomplished by using the everyxth tag. The following example lines of code show how to make a clickable button that will pull up everything your database has for the category specified, and display the results in user-definable rows of either links or images:

<FORM METHOD="POST" ACTION="/cgi-bin/dbsearch.exe">
<input type="hidden" name="mdb" value="\path\filename.mdb">
<input type="hidden" name="tbl" value="MyProducts">
<input type="hidden" name="template" value="\path\filename.htm">
<input type="hidden" name="DB_Category" value="Watches">
<input type="hidden" name="DBCOMP" value="ABS">
<input type="hidden" name="EveryXthValue" value="3">
<input type="hidden" name="EveryXthData" value="</tr><tr>">
<input type="submit" name="Watches">
</FORM>


Please see Using the GET Method to make a clickable link instead of a <FORM> button.