Home : Products : Gossamer Links : Discussions :

Products: Gossamer Links: Discussions: Re: [Andy] Fuzzy Search: Edit Log

Here is the list of edits for this post
Re: [Andy] Fuzzy Search
Thanks Andy, how about passing it on the normal search and not in the advanced search? Here is my normal search code:

Code:


<form action="<%config.db_cgi_url%>/search.cgi">

<input type="text" id="searchbox" name="query" value="<%if query%><%escape_html query%><%endif%>" class="text" size="39" style="font-family: Verdana; font-size: 12pt" />

<%selected_value_field('Categoria')%>
<select name="Categoria"><option selected value="*">Todas las Categorías</option>
<%loop selected_values%>
<%if checked%>
<option value="<%value%>" selected>
<%name%>
</option>
<%else%>
<option value="<%value%>">
<%name%>
</option>
<%endif%>
<%endloop%>
</select>


<%selected_value_field('Pais')%>
<select name="Pais"><option selected value="*">Todos los Países</option>
<%loop selected_values%>
<%if checked%>
<option value="<%value%>" selected>
<%name%>
</option>
<%else%>
<option value="<%value%>">
<%name%>
</option>
<%endif%>
<%endloop%>
</select>


<input type="image" SRC="/imagenes/buscar.gif" name="Buscar" value="Buscar" class="submit" />
</form>

Last edited by:

Gorospe: Jul 22, 2008, 7:48 AM

Edit Log: