<?php
$currency = $_POST['currency'];
$amount = $_POST['amount'];

if($currency ==  "Iceland Krona")
{
$ice =  $amount * 2.07;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $ice ;
}
if($currency == "HongKong Dollar")
{
$hong =  $amount * 0.15;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $hong ;
}
if($currency == "Iranian Rial")
{
$ira =  $amount * 701.17;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $ira ;
}

if($currency ==  "Egyptian Pound")
{
$egy=  $amount *0.35;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $egy ;
}
if($currency ==  "Chilean Peso")
{
$chi=  $amount * 12.99;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $chi ;
}
if($currency ==  "Bulagarian Lev")
{
$bulg=  $amount * 0.03;
echo " The Value of " ,$amount,"  ","in "," ", $currency  , "  ","is",  " " , $bulg ;
}
?>