success.php 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php include('header.php') ?>
  2. <section class="nav">
  3. <ul>
  4. <li class="lead" > Payment Method</li>
  5. <li class="lead" > Pay</li>
  6. <li class="active lead" > Done</li>
  7. </ul>
  8. </section>
  9. <section class="confirmation">
  10. <label class="success" for="" >Success</label>
  11. <!-- <label class="failed" for="" >Failed</label> -->
  12. <small>Thank You For Your Order</small>
  13. </section>
  14. <section class="order-confirmation">
  15. <label for="" class="lead">Order ID : <?php echo $_REQUEST['fort_id']?></label>
  16. </section>
  17. <div class="h-seperator"></div>
  18. <section class="details">
  19. <h3>Response Details</h3>
  20. <br/>
  21. <table>
  22. <tr>
  23. <th>
  24. Parameter Name
  25. </th>
  26. <th>
  27. Parameter Value
  28. </th>
  29. </tr>
  30. <?php
  31. foreach($_REQUEST as $k => $v) {
  32. echo "<tr>";
  33. echo "<td>$k</td><td>$v</td>";
  34. echo "</tr>";
  35. }
  36. ?>
  37. </table>
  38. </section>
  39. <div class="h-seperator"></div>
  40. <section class="actions">
  41. <a class="btm" href="index.php">New Order</a>
  42. </section>
  43. <?php include('footer.php') ?>