File size: 846B
<html>
<title>Rupees To Dollar</title>
<?php include "inc/def.php"; ?>
<?php include "inc/usrchk.php";
if($guest==1) {
header("location:index.php");
} ?>
<?php include "inc/header.php"; ?>
<div class="line">Rupees To Dollar</div>
<?php
if (isset($_REQUEST['amount']))
{
if(empty($_REQUEST['amount']) || $_REQUEST['amount']<0 || $_REQUEST['amount']>999999999999999)
{
echo "<div class='done'><b>Enter Amount</b></div>";
}
else
{
$amount = $_REQUEST['amount'] ;
$amountd=$amount*0.02;
echo "<div class='done'><b>RS.".$amount."=$".$amountd."</b></div>";
}
}
else
//if "amount" is not filled out, display the form
{
echo "<form method='post' action='mtod.php'><b>Enter Amount(In Rs):
<input name='amount' type='text' />
<div class='lwt'><input type='submit' value='Convert Now' /></div>
</form>";
}
?>
<?php include "inc/footer.php"; ?>
</html>