Hi. Just change the following in the config.php file:
PHP Code:
define('SEARCH_DEFAULT_LIMIT',10); // results per page
define('SEARCH_DEFAULT_MODE','start'); // default search mode (start|exact|any)
and then use something like the following HTML in the page:
Code:
<form action="CHANGE_ME/search.php" method="post">
<table>
<tr>
<td><input name="query_string" type="text" size="35"></td>
<td><input name="search" type="submit" value="Go"></td>
</tr>
</table>
</form>