Assignment: Set C Q.1 Solution

Write a PHP script to create an online shopping form. On the first page accept customer name, email address, shipping address, mode of payment. Design the Second page as given below. And the third page should display a bill, which consists of customer details and purchase details in the proper format.

HTMl Form

                  <html>
  <body>
    <h2>Online Shopping Site <br> Customer Details</h2>
    <form action="form2.php" method="post">
    <input type="text" name="cn" placeholder="Customer Name">
        <br><br>
    <input type="email" name="em" placeholder="Email Address">
        <br><br>
    <input type="text" name="add" placeholder="Recidence Address ">
        <br><br>
    <select name="mof">
      <option >Mode of Payment</option>
      <option value="COD">COD</option>
      <option value="UPI">UPI</option>
    </select>
        <br><br>
    <input type="submit">
    </form>
  </body>
</html>
    
        
    
        

PHP SCRIPT

                  <?php
    $pn=$_POST['pn'];
    $tq=$_POST['tq'];
    $ts=$_POST['ts'];

    setcookie('pname',$pn);
    setcookie('tquantity',$tq);
    setcookie('tsales',$ts);
?>

<html>
  <body>
    Inventory Management System<br>
    Details for Highest Sold Product<br><br>
    <form action="php.php" method="post">
      <input type="text" name="lspn" placeholder="Latest Sold Product Name">
      <br><br>
      <input type="text" name="lspq" placeholder="Total Quantity">
      <br><br>
      Latest Sales Date
      <input type="date" name="lsd">
      <br><br>
      <input type="submit">
    </form>
  </body>
</html>
    
        
    
        

PHP SCRIPT

                  <?php
          $pn=$_POST['pname'];
          $quantity=$_POST['quantity'];
          $color=$_POST['color'];
          $size=$_POST['size'];
      
          if($pn=="Tie")
          {
            $tp=500*$quantity;
            $pp=500;
          }
          elseif($pn=="Suit")
          {
            $tp=1000*$quantity;
            $pp=1000;
          }
          elseif($pn=="Tshirt")
          {
            $tp=1500*$quantity;
            $pp=1500;
          }
      
      
      
          
      echo "Customer name : $_COOKIE[cn] <br><br>";
      echo "Email : $_COOKIE[em] <br><br>";
      echo "Address : $_COOKIE[add] <br><br>";
      echo "Mode of Payment : $_COOKIE[mof] <br><br>";
      echo "Product name : $pn <br><br>";
      echo "Price Per Product :Rs: $pp <br><br>";
      echo "Quantity: $quantity <br><br>";
      echo "Color : $color <br><br>";
      echo "Size : $size <br><br>";
      echo "Total Amount :Rs: $tp <br><br>";
       ?>