Hello
I have problem picking up form data. One of my form field is:
and another field:
I would like to pick you the currency in this way:
I have tried many other ways but I don't seem to succeed. I am not a php expert please help.
thanks
Ron
I have problem picking up form data. One of my form field is:
<select id="currency" name="currency" required="true" style="font-family:Verdana, Geneva, sans-serif; width:480px; font-size:20px; height:40px; border:1px solid #999;" onChange="change_selection();">
<option value="0" selected="selected" >Select Your Currency</option>
<option id="9" value="9">Price quote in USD.</option>
<option id="10" value="10">Price quote in EUR.</option>
<option id="11" value="11">Price quote in UAH.</option>
<option id="12" value="12">Price quote in GBP.</option>
</select>
and another field:
<input type="checkbox" id="afkv" value="1" name="afkv" />
I would like to pick you the currency in this way:
< ?php
if (!empty($form->data['afkv'])) {
print("\n {$prices['currency'.'_afkv']}");
$totals -= $prices['currency'.'_afkv'];
}
? >
I have tried many other ways but I don't seem to succeed. I am not a php expert please help.
thanks
Ron