Main
Index
Search
Posts
Who's
Online
Log
In

Home: Discontinued/Classic Products: Instant Website: Realty/Listings/Auto:
Search

 

 


richc
User

Nov 17, 2009, 2:38 PM

Post #1 of 3 (2441 views)
Shortcut
Search Can't Post

I am using this code in my search form and it works fine for an exact match:


Code
<form method="POST" action="/path/to/your/listViewer.php"> 
<input type="text" name="title_keyword" value="">
<input type="submit" name="submit" value="Search">
</form>


How can I use the search form to return a query LIKE "%title_keyword%" ?


Damon
Staff / Moderator


Nov 17, 2009, 3:33 PM

Post #2 of 3 (2437 views)
Shortcut
Re: [richc] Search [In reply to] Can't Post

Hi Rich,

How about this:


Code
<form method="POST" action="/path/to/your/listViewer.php"> 
<input type="text" name="title__query" value="">
<input type="submit" name="submit" value="Search">
</form>


Here is a list of all the search options available:
http://www.interactivetools.com/docs/cmsbuilder/viewer_search.html

--------------------------------------------------- 
Cheers
Damon Edis
interactivetools.com

Hire me! Save time by getting our experts to help with your project.
http://www.interactivetools.com/consulting/


richc
User

Nov 17, 2009, 3:43 PM

Post #3 of 3 (2436 views)
Shortcut
Re: [Damon] Search [In reply to] Can't Post

 _keyword has fixed it , thanks!