Yes, you can use Euros.
http://www.k-motorsports.com/index.html
When I took a look at your source code, I found that you have a cart_id hard coded in toyour web page.
I see the following URL format:
http://www.k-motorsports.com/shop_cart/agora.cgi?cart_id=%25%25&p_id=4367&xm=on&ppinc=search2
You need to remove the cart_id info and cannot be included on any page outside of the cart.
So the URL should look more like:
http://www.k-motorsports.com/shop_cart/agora.cgi?p_id=4367&xm=on&ppinc=search2
And the search box on the left, I see:
Code:
<form METHOD="POST" ACTION="http://www.k-motorsports.com/shop_cart/agora.cgi" align="center">
<div align="center">
<INPUT TYPE="hidden" NAME="cart_id" VALUE="%Êrt_id%%">
<input TYPE="text" NAME="keywords" SIZE="10" MAXLENGTH="60">
<input TYPE="hidden" NAME="ppinc" VALUE="search">
<input TYPE="submit" NAME="search_request_button" VALUE=" Go ">
</div>
</form>
You need to remove the following line:
Code:
<INPUT TYPE="hidden" NAME="cart_id" VALUE="%Êrt_id%%">
Now, as for your dual field search....
You will need to use a couple fields in the product database.
In user3 field, put the make of vehicle
In user4 field, put the model of vehicle
Then your search feature need to be sorta like this:
Code:
<form METHOD="POST" ACTION="http://www.k-motorsports.com/shop_cart/agora.cgi" align="center">
<div align="center">
<INPUT TYPE="hidden" NAME="cart_id" VALUE="">
<table><tr>
<td><select name="user3">
<OPTION>Acura
<OPTION>Audi
<OPTION>BMW
<OPTION>Chevy
<OPTION>Dodge
</select></td>
<td><select name="user4">
<OPTION>model1
<OPTION>model2
<OPTION>model3
<OPTION>model4
<OPTION>model5
</select></td>
</tr></table>
<input TYPE="hidden" NAME="ppinc" VALUE="search">
<input TYPE="submit" NAME="search_request_button" VALUE=" Go ">
</div>
</form>
HTH!
_________________
God Bless!
Bonnie - AgoraCart Moderator
Get a Gold Membership