Quote:
Originally Posted by weissmad
- search_intro
- --Return advanced search form related data.
- search_process
- --Process search and generate a searchid.
- search_showresults
- --Show search results.
- search_getdaily
- --Get new threads/posts posted in X day(s).
- search_getnew
- --Get new threads/posts posted since last visit.
- search_finduser
- --Find threads/posts posted by a specific user.
- search_doprefs
- --Save search preferences for logged-in user.
|
Searching only requires:
search_process -> gives you an id to retrieve search results
search_showresults -> returns the results for given id
Parameters for search process are mostly the same as they are used in advanced search in usercp:
For example:
query = 'find*me' // search query
forumchoice = '1,2,3,4' // only in listet forums
childforums = 1 // also search in child forums
titleonly = 0 // searches only in titles
contenttypeid = 1 // searches only in posts (not blogs, groups, etc)
Have a closer look to search.php
Major parameters for search_showresult are: page, perpage and searchid
Greetings
Bundschuh