beanymanuk Posted July 16, 2010 Share Posted July 16, 2010 Select Size: <select name=clothessize> <option name=one value=one>S</option> <option name=two value=two>M</option> <option name=three value=three>L</option> <option name=three value=three>XL</option> </select> <input type="button" name="btnAddToCart" value="Add To Cart >" onClick="window.location.href='<?php echo $cart_url; ?>';" class="addToCartButton"> How can I get the combo box value into a php variable without refreshing the page so I can pass its value though on onClick event? Thankyou in advance Pete Quote Link to comment Share on other sites More sharing options...
beanymanuk Posted July 16, 2010 Author Share Posted July 16, 2010 More explanation I want a drop down box to onchange, change the value of the url variable s in the code below which is currently showing "small" <input type="button" class="addToCartButton" onclick="window.location.href='cart.php?action=add&p=36&s=small';" value="Add To Cart >" name="btnAddToCart"> Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.