Gossamer Forum
Home : Products : DBMan : Customization :

How to put search field in footer

Quote Reply
How to put search field in footer
I am interested in placing a single search field in the footer info, and eliminate the 'View' link. Possible? If so, how?

Quote Reply
Re: How to put search field in footer In reply to
Code:

print qq|
<form action="$db_script_url" method="GET">
<input type=hidden name="db" value="$db_setup">
<input type=hidden name="uid" value="$db_uid">
<input type=hidden name="view_records" value="1">
<INPUT TYPE="TEXT" NAME="keyword" SIZE=15 MAXLENGTH=255>
<INPUT TYPE="SUBMIT" NAME="view_records" VALUE="Search">
</form>
|;
JPD