This topic is locked

Add Search to View Page

12/8/2011 3:54:41 PM
PHPRunner General questions
W
weisd author

Is it possible to add either basic search or advanced search to View Page?

W
weisd author 12/8/2011

Guess I answered my own question... Found this, works good...
<FORM name=frmSearch action="PutYoursHere_TBL_list.php" method=get target=_self>

<input type="Hidden" name="a" value="search">

<input type="Hidden" name="value" value="1">

<INPUT type=text name="SearchFor"

onkeydown="e=event; if(!e) e = window.event; if (e.keyCode != 13) return true; e.cancel = true; frmSearch.submit(); return false;"

>

<input type="Hidden" name="SearchOption" value="Contains">

<input type="Hidden" name="SearchField" value="">
<input type="submit" value="Search">

</FORM>