<?php
$currency = $_POST['currency'];
$amount = $_POST['amount'];



if($currency ==  "US Dollar")
{
$us =  $amount * 0.02;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $us ;
}
if($currency == "Euro")
{
$euro =  $amount * 0.02;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $euro ;
}
if($currency == "British Pound")
{
$bri =  $amount * 0.01;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $bri ;
}

if($currency ==  "Japanese Yen")
{
$jap=  $amount * 2.25;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $jap ;
}
if($currency ==  "Czech Korune")
{
$czech=  $amount * 0.43;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $czech ;
}
if($currency ==  "Indian Rupee")
{
$Indian=  $amount * 1.28;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $Indian ;
}

?>