online shop script

daxvewili

Beta member
Messages
1
hi, i have one question. i hope i am posting new thread at right place. i have online shop at open cart engine, and i need to write script which will give me opportunity to choose computers parts (such as monitor, ram and so on), and when i press button it must calculeta price of it. script may be consist of select-option codes, or of checkboxes. i wroe this codes, but it works for only one product.
Code:
  <form action="http://127.0.0.1/index.php?route=checkout/cart" method="post" enctype="multipart/form-data" id="product">
                <div class="content">
				choose computer parts
				<select onchange="product_id=value">
				<option value="119">asus pc</option>
				<input type="hidden" name="quantity" size="3" value="1">
				<a id="add_to_cart" class="button"><span>buy</span></a>
				<input type="hidden" name="product_id" value="119">
                <input type="hidden" name="redirect" value="http://127.0.0.1/index.php?route=product/product&product_id=119"> 
                </select>
i hope wrote everything clearly, thanks a lot.
 
Back
Top Bottom