
Donna
Staff
/ Moderator

Jun 16, 2004, 4:56 PM
Post #2 of 2
(4115 views)
Shortcut
|
|
Re: [Datahouse] input type button
[In reply to]
|
Can't Post
|
|
Hi Datahouse, What you'll want to do is setup some hidden fields followed by a submit button like this: <form method=get action="/path/to/search.cgi"> <input type="hidden" name="search" value="1"> <input type="hidden" name="lfield12_keyword" value="Mercedes"> <input type="submit" name="search" value="Mercedes"> </form> The first line is what tells the form what program to use. The second tells it to get search results, rather than a search query. The third tells it to search lfield12 for the term "Mercedes". (Change this as appropriate.) And the last is the submit button itself. Change the "Value" to whatever you want to display on teh button. I hope this helps! Let me know if you have any other questions. :) Donna -- support@interactivetools.com
|