Hello,
I want to pick up some form values in php. How can I do this ? The form field is below:
The original code is below that picks up value from my price array:
I want this code to work as per choice. Can I do something like this?😀
Please help. Thanks
Ron
I want to pick up some form values in php. How can I do this ? The form field is below:
<select name="currency" required="true" id="currency" onchange="setFlag(this.value)" style="font-family:Verdana, Geneva, sans-serif; width:150px; font-size:15px; border:1px solid #999;">
<option value="usd">usd</option>
<option value="eur">eur</option>
<option value="uah">uah</option>
<option value="inr">inr</option>
The original code is below that picks up value from my price array:
<?php $freight_value = ("\n {$prices['frt_usd_200']}"); ?>
I want this code to work as per choice. Can I do something like this?😀
<?php $freight_value = ("\n {$prices['frt_{currency}_200']}"); ?>
Please help. Thanks
Ron