% '============================= 'search is a simple text box search where 'a user will displayed a list of results 'the searchable feilds are *who posted*, *topic title* 'and *msg body* dim error, error_msg, search_results if (Request.Form("search") <> "") then 'they want to for *something* call forum_search(trim(Request.Form("search")), true) end if %>
..::LvL Forum Search ... the only way to find that post!
The ..::LvL forum search lets you find any post that contains what you enter in the search box field below. The search will return more result with the less you enter. See the search tips below for more details.
<% if isarray(search_results) then %>
| title | who posted | last post | no. post |
| ><%
if search_results(0,i) = "untitled" then
'its a msg reply, not a top level topic
Response.Write(" |
><% if isnull(search_results(3,i)) then 'its not a registered user, so print there name Response.Write(search_results(2,i)) else 'its a registered user :] Response.Write(search_results(3,i)) end if %> | ><% if hours_from_now(search_results(1,i)) < 25 then Response.Write(hours_from_now(search_results(1,i)) & " hrs") else Response.Write(days_from_now(search_results(1,i)) & " days") end if %> | ><% if search_results(0,i) = "untitled" then Response.Write("reply") else Response.Write(post_count(search_results(6,i))) end if %> |
Your search for <%=Request.Form("search")%> returned no results. Check over the tips below, try searching for less or using a an underscore '_' as a wildcard in your search string.
<% end if %>|
* Only the top 250 results are returned, ordered by date. * Getting no results? try part of a word only (less is more here). * You can use '_' as a single letter wild card. * You can search by title or posters name or body of messgae, but not all at once (you will get no results) * A search for r_speeds will return all message with the word r_speeds in them but a search for r_speeds and polycounts will on return messages with the same search string (r_speeds and polycounts) in them. ie. A lot less results. * A serach for the letter 'e' will return every post with an 'e' in it (a lot of them) |
||