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 Link to comment https://forums.phpfreaks.com/topic/207969-combo-box-value-to-php-variable/ 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"> Link to comment https://forums.phpfreaks.com/topic/207969-combo-box-value-to-php-variable/#findComment-1087262 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.