I currently have two forms in my CGI script. One of the forms has a submit box.
I am wondering if I can put that same box in the other form so as to send the values from the select box to two different CGI scripts via the two forms.
<FORM ACTION="index.cgi" ID="Form" METHOD="POST" >
<SELECT NAME="stime" ID="stim" SIZE=4 >
....
</SELECT>
</FORM>
Is there a way for me to put the select box stime
into another form?