View file public_html/dtom.php

File size: 846B
<html>
<title> Dollar To Rupees</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">Dollar To Rupees</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>$".$amount."=RS.".$amountd."</b></div>";
}
}
else
//if "amount" is not filled out, display the form
{
echo "<form method='post' action='dtom.php'><b>Enter Amount(In $):
<input name='amount' type='text' />
<div class='lwt'><input type='submit' value='Convert Now' /></div>
</form>";
}
?>
<?php include "inc/footer.php"; ?>
</html>