2003-12-09 06:46:50 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
2003-12-09 06:46:50 +00:00
|
|
|
|
|
|
|
page_head("Message search");
|
|
|
|
|
|
|
|
echo "
|
|
|
|
This page lets you search for messages containing particular words.
|
|
|
|
All Message boards and Question/answer areas will be searched.
|
|
|
|
<br><br>
|
|
|
|
|
|
|
|
<table cellpadding=8 bgcolor=ffffcc>
|
|
|
|
<tr>
|
|
|
|
<td align=right>
|
|
|
|
Search titles:
|
|
|
|
</td><td>
|
2004-05-30 21:47:11 +00:00
|
|
|
<form action=forum_text_search_action.php>
|
2003-12-09 06:46:50 +00:00
|
|
|
<input name=search_string>
|
|
|
|
<input type=submit name=titles value=Search>
|
|
|
|
</form>
|
|
|
|
</td></tr>
|
|
|
|
<tr><td align=right>
|
|
|
|
Search messages:
|
|
|
|
</td><td>
|
2004-06-09 00:12:22 +00:00
|
|
|
<form action=forum_text_search_action.php>
|
2003-12-09 06:46:50 +00:00
|
|
|
<input name=search_string>
|
|
|
|
<input type=submit name=bodies value=Search>
|
|
|
|
</form>
|
|
|
|
</td></tr></table>
|
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
?>
|