<?php
$currency = $_POST['currency'];
$amount = $_POST['amount'];

if($currency ==  "Hungarian Forint")
{
$hung =  $amount * 5.26;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $hung ;
}
if($currency == "Israeli New Shekel")
{
$isr =  $amount * 0.0695;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $isr ;
}
if($currency == "Ukraine Hryvnia")
{
$ukr =  $amount * 0.554;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $ukr ;
}

if($currency ==  "Thai Baht")
{
$thai=  $amount * 0.652;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $thai ;
}
if($currency ==  "UN. Arab Emirates")
{
$un=  $amount * 0.0731;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $un ;
}
if($currency ==  "Turkish Lira")
{
$turk=  $amount * 0.0762;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $turk ;
}
?>