|
Users Developers Wiki help. |
SearchFilterPurposeAllows filtering the results of an item list by a keyword search on title and description. Modification instructions (for V0.7 RC1)1. In
2. Insert the following just before the line in step 1: echo " \nSearch: \n";
3. Find the text: 4. Insert the following block just before the line in step 3:
$search = strtoupper($_POST['search']);
if($search != "") {
if(!strstr(strtoupper($row['title']),$search) and !strstr(strtoupper($row['description']),$search)) $showme="n";
}
5. Save, refresh your browser, and enjoy your new search filter! Questions/comments |