ok
Direktori : /home2/selectio/public_html/ramali.in/ |
Current File : /home2/selectio/public_html/ramali.in/view-order.php |
<?php include "header.php"; include "config.php"; session_start(); include "cart.class.php"; ?> <html> <head> <title>Cart</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"> <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script> </head> <body> <?php include "navbar.php"; ?> <div class='container mt-3'> <div class='row'> <div class='col-md-12'> <h2 class='text-muted mb-4'>My Orders</h2> <table class='table table-striped table-bordered'> <thead> <tr> <th colspan='2' class='text-center'>Order No</th> <th colspan='2' class='text-center'>Product</th> <th>Order Date</th> <th>Price</th> <th>Quantity</th> <th>Total</th> </tr> </thead> <tbody> <tr> <td colspan='2'>56789vbjnk3248</td> <td colspan='2'>Long Top</td> <td>24-01-2024</td> <td>₹ 76</td> <td>2</span></td> <td>₹ 152</td> </tr> </tbody> </table> </div> </div> </div> </body> <?php include("footer.php");?>