Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: [Andy] Fuzzy Search

Quote Reply
Re: [Andy] Fuzzy Search In reply to
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
Subject Author Views Date
Thread Fuzzy Search Gorospe 4753 Jul 22, 2008, 6:19 AM
Thread Re: [Gorospe] Fuzzy Search
Andy 4652 Jul 22, 2008, 6:28 AM
Thread Re: [Andy] Fuzzy Search
Gorospe 4656 Jul 22, 2008, 7:46 AM
Thread Re: [Gorospe] Fuzzy Search
Andy 4654 Jul 22, 2008, 7:56 AM
Thread Re: [Andy] Fuzzy Search
Gorospe 4648 Jul 22, 2008, 8:16 AM
Thread Re: [Gorospe] Fuzzy Search
Andy 4684 Jul 22, 2008, 8:17 AM
Thread Re: [Andy] Fuzzy Search
Gorospe 4651 Jul 22, 2008, 8:49 AM
Post Re: [Gorospe] Fuzzy Search
Andy 4640 Jul 22, 2008, 9:03 AM
Post Re: [Gorospe] Fuzzy Search
Payooo 4636 Jul 23, 2008, 12:21 AM