lajocar Posted September 4, 2009 Share Posted September 4, 2009 How can I echo the total value in id="txtTotal" to a variable $products_price on form? Basically id="txtTotal" value must be same for $products_price. Its on Oscommerce product_info page. Total: <input type="text" id="txtTotal" size="8" /> <?php echo $products_price; ?> </p> </form> Any help will be appreciated Thanks Link to comment https://forums.phpfreaks.com/topic/173090-update-variable/ Share on other sites More sharing options...
Garethp Posted September 4, 2009 Share Posted September 4, 2009 <input type="text" id="<?php echo $products_price; ?>" size="8" /> Link to comment https://forums.phpfreaks.com/topic/173090-update-variable/#findComment-912335 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.