Hello,
When I change the currency with the Select option option, I want the coins just below to be converted
<select size="1" name="currency">
<option selected value="USD">USD</option>
<option value="EURO">EURO</option>
<option value="TRY">TRY</option>
</select>
<input type="text" name="" value="320.50">
<input type="text" name="" value="150.00">
<input type="text" name="" value="250.35">
Exchange rates available with php
$usd = 17.9846; //TRY
$euro = 18.4251; //TRY
$euro_usd = 1.0245; //USD
I want it to convert without refreshing the page
Page is not refreshed
USD to TRY,
TRY to EURO,
USD to EURO,
EUR to TRY
as
I will be glad if you help