I have a form that looks like this:
<FORM ACTION="../TLCScripts/interpac.dll?NewestSearch" METHOD="post">
<INPUT TYPE=hidden NAME=Config VALUE="PAC">
<INPUT Type="hidden" Name="SearchField" Value="17">
<INPUT Type="hidden" NAME="PeriodLimit" Value="30">
<INPUT type="hidden" name="SearchType" value="1">
<INPUT type="hidden" name="SortField" value="2">
<INPUT type="hidden" name="ItemsPerPage" value="100">
<b>New Items</b><br />
<SELECT name="SearchData">
<OPTION value="sound recording-CD">Audio Books</OPTION>
<OPTION value="Videorecording-DVD">Movies</OPTION>
</SELECT>
<INPUT type=submit value="Submit">
</FORM>
What I'd like to do is eliminate the form and just have two links, one that says "Movies" and another that says "Audios".
How can I create a simple link that incorporates all the input values in the form?
Thanks.
<FORM ACTION="../TLCScripts/interpac.dll?NewestSearch" METHOD="post">
<INPUT TYPE=hidden NAME=Config VALUE="PAC">
<INPUT Type="hidden" Name="SearchField" Value="17">
<INPUT Type="hidden" NAME="PeriodLimit" Value="30">
<INPUT type="hidden" name="SearchType" value="1">
<INPUT type="hidden" name="SortField" value="2">
<INPUT type="hidden" name="ItemsPerPage" value="100">
<b>New Items</b><br />
<SELECT name="SearchData">
<OPTION value="sound recording-CD">Audio Books</OPTION>
<OPTION value="Videorecording-DVD">Movies</OPTION>
</SELECT>
<INPUT type=submit value="Submit">
</FORM>
What I'd like to do is eliminate the form and just have two links, one that says "Movies" and another that says "Audios".
How can I create a simple link that incorporates all the input values in the form?
Thanks.