X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Changing design (https://forum.x-cart.com/forumdisplay.php?f=51)
-   -   Drop Down Search List (https://forum.x-cart.com/showthread.php?t=30399)

IconAdmin 04-12-2007 05:05 PM

Drop Down Search List
 
Hi I want to search on pre defined Item discriptions, it works if you type them in
but i want the user to select from a drop down anybody got a bit of code for this?

Andy

Jon 04-13-2007 07:47 AM

Re: Drop Down Search List
 
For 4.0.x, this should do it:

Code:

<form method="GET" action="search.php">
<input type="hidden" name="simple_search" value="Y" />
<input type="hidden" name="mode" value="search" />
<input type="hidden" name="posted_data[by_title]" value="Y" />
<input type="hidden" name="posted_data[by_shortdescr]" value="Y" />
<input type="hidden" name="posted_data[by_fulldescr]" value="Y" />
<select name="posted_data[substring]">
<option>Text 1</option>
<option>Text 2</option>
<option>Text 3</option>
<option>Text $</option>
</select>
</form>



All times are GMT -8. The time now is 11:07 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.