$currency_input = 2; //currency codes : http://en.wikipedia.org/wiki/ISO_4217 $currency_from = "USD"; $currency_to = "INR"; $currency = currencyConverter($currency_from,$currency_to,$currency_input); echo $currency_input.' '.$currency_from.' = '.$currency.' '.$currency_to;...