CGI How-To Drop Menu Script
You can add a drop down box to your site using a site supplied navigation script. The following code will produce the dropdown box:
<FORM METHOD="POST" ACTION="/scripts/navigate.cgi">
<SELECT NAME="jumpbox">
<OPTION VALUE="http://www.commkal.com/index.html">CommKal Hosting Solutions
<OPTION VALUE="http://www.cnn.com/">CNN News
<OPTION VALUE="http://www.yahoo.com">Yahoo
<OPTION VALUE="http://www.commkal.com/helpdesk">HelpDesk
</SELECT>
<input type="submit" VALUE="LetsGo">
The keys for the drop down boxes are:
- The following must be used as the action line - action="/scripts/navigate.cgi" (the form method can be either POST or GET)
- the select name must be "jumpbox".
|