Hungry Tummy PHP File

<html>
</head><title>PHP Array program</title></head>
<body >
<font size=4 face=candara>
<?php
echo "<table cellspacing=2 cellpadding=2> <caption><b><font face=jokerman size=6 color=blue><marquee>HUNGRY TUMMY</marquee></font></b></caption>";
echo "<tr><th colspan=3><h3><u>Your Order Details</u></h3>";
echo "<hr color=red></th></tr>";
echo "<tr><th align=left rowspan=2><br> Welcome <font color=blue size=5>" . $_REQUEST["usrnm"] . "</font>";
echo "<br> <br>Your order will be delivered at address : <br><font color=blue>";
$text=$_REQUEST["addr"];
echo str_replace("\n","<br>",$text);
echo "</font><br><br>Your Order is :<font color=green>";
      if(isset($_REQUEST["chk1"]))
         echo "<br>" . $_REQUEST["chk1"];
      if(isset($_REQUEST["chk2"]))
         echo "<br>" . $_REQUEST["chk2"];
      if(isset($_REQUEST["chk3"]))
         echo "<br>" . $_REQUEST["chk3"];
     if(isset($_REQUEST["chk4"]))
         echo "<br>" . $_REQUEST["chk4"];
     if(isset($_REQUEST["chk5"]))
         echo "<br>" . $_REQUEST["chk5"];
    if(isset($_REQUEST["chk6"]))
         echo "<br>" . $_REQUEST["chk6"];
 if(isset($_REQUEST["chk7"]))
         echo "<br>" . $_REQUEST["chk7"];
 if(isset($_REQUEST["chk8"]))
         echo "<br>" . $_REQUEST["chk8"];

echo "</font><br><br>Payment Details :<font color=blue>";
if(isset($_REQUEST["rd"]))
   echo $_REQUEST["rd"];
echo "</font></th><th><img src=sand1.jpg width=150 height=100><br><img src=pastry1.jpg width=150 height=100></th><th><img src=cc1.jpg width=150 height=100><br><img src=pasta2.jpg width=150 height=100></th></tr><tr><th colspan=2><h2><br>Thank you for your order. Enjoy your snack time!!!</h2></th></tr></table>";
?>
</font>
</body>

Post a Comment

0 Comments