Hi !
I took the sample example from EE user guide, and now the question is how do i direct this result/query to an output page?
What do I need to do?
Could anyone show me step by step.
Thanks
Sample code from EE User Guide example for Search
=======================================
{exp:search:advanced_form result_page="search/results"}
<table cellpadding=’4’ cellspacing=’6’ border=’0’ width=’100%’>
<tr>
<td>
<fieldset class=“fieldset”>
<legend>{lang:search_by_keyword}</legend>
<input type=“text” class=“input” maxlength=“100” size=“40” name=“keywords” style=“width:100%;” />
<div class=“default”>
<select name=“search_in”>
<option value=“titles” selected=“selected”>{lang:search_in_titles}</option>
<option value=“entries” selected=“selected”>{lang:search_in_entries}</option>
<option value=“everywhere” >{lang:search_everywhere}</option>
</select>
</div>
<div class=“default”>
<select name=“where”>
<option value=“exact” selected=“selected”>{lang:exact_phrase_match}</option>
<option value=“any”>{lang:search_any_words}</option>
<option value=“all” >{lang:search_all_words}</option>
<option value=“word” >{lang:search_exact_word}</option>
</select>
</div>
</fieldset>
</td><td>
<fieldset class=“fieldset”>
<legend>{lang:search_by_member_name}</legend>
<input type=“text” class=“input” maxlength=“100” size=“40” name=“member_name” style=“width:100%;” />
<div class=“default”><input type=“checkbox” class=“checkbox” name=“exact_match” value=“y” /> {lang:exact_name_match}</div>
</fieldset>
</td>
</tr>
</table>
<table cellpadding=’4’ cellspacing=’6’ border=’0’ width=’100%’>
<tr>
<td valign=“top” width=“50%”>
<table cellpadding=’0’ cellspacing=’0’ border=’0’>
<tr>
<td valign=“top”>
<div class=“defaultBold”>{lang:weblogs}</div>
<select id=“weblog_id” name=’weblog_id[]’ class=’multiselect’ size=’12’ multiple=’multiple’ onchange=’changemenu(this.selectedIndex);’>
{weblog_names}
</select>
</td>
<td valign=“top” width=“16”> </td>
<td valign=“top”>
<div class=“defaultBold”>{lang:categories}</div>
<select name=’cat_id[]’ size=’12’ class=’multiselect’ multiple=’multiple’>
<option value=’all’ selected=“selected”>{lang:any_category}</option>
</select>
</td>
</tr>
</table>
</td>
<td valign=“top” width=“50%”>
<fieldset class=“fieldset”>
<legend>{lang:search_entries_from}</legend>
<select name=“date” [removed]>
<option value=“0” selected=“selected”>{lang:any_date}</option>
<option value=“1” >{lang:today_and}</option>
<option value=“7” >{lang:this_week_and}</option>
<option value=“30” >{lang:one_month_ago_and}</option>
<option value=“90” >{lang:three_months_ago_and}</option>
<option value=“180” >{lang:six_months_ago_and}</option>
<option value=“365” >{lang:one_year_ago_and}</option>
</select>
<div class=“default”>
<input type=’radio’ name=’date_order’ value=’newer’ class=’radio’ checked=“checked” /> {lang:newer}
<input type=’radio’ name=’date_order’ value=’older’ class=’radio’ /> {lang:older}
</div>
</fieldset>
<div class=“default”>
</div>
<fieldset class=“fieldset”>
<legend>{lang:sort_results_by}</legend>
<select name=“orderby”>
<option value=“date” >{lang:date}</option>
<option value=“title” >{lang:title}</option>
<option value=“most_comments” >{lang:most_comments}</option>
<option value=“recent_comment” >{lang:recent_comment}</option>
</select>
<div class=“default”>
<input type=’radio’ name=’sort_order’ class=“radio” value=’desc’ checked=“checked” /> {lang:descending}
<input type=’radio’ name=’sort_order’ class=“radio” value=’asc’ /> {lang:ascending}
</div>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div class=’searchSubmit’>
<input type=’submit’ value=’Search’ class=’submit’ />
</div>
{/exp:search:advanced_form}