hey friends,
I am a beginner and need your help for one of the issue i am facing.
In this form http://www.venturetravelclub.com/payment2/ , what I want is when a package is selected the correspondence price should be auto populated in the price field.
$GoodsName=array();
$GoodsName[‘01’]=‘Venture Travel Bronze Package: 3 vacations for $649.00’;
$GoodsName[‘02’]=‘Venture Travel Silver Package: 5 vacations for $499.00’;
$Amount=array();
$Amount[‘01’]=‘649’;
$Amount[‘02’]=‘499’;
and I need to send them through form submit to the next page, to do that I have assigned the values like this -
-- Select Travel Package -- <?php foreach($GoodsName as $key=>$val){?> <?=$val?> <?php } ?>Can you please help me to auto-populate the price when package is selected , and also with the code to assign and send value to next page through form submission.
Regards
Jit