Advertisement
vdp

Untitled

vdp
Jul 31st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.90 KB | None | 0 0
  1.     <?php
  2.     session_start();
  3.     include("../includes/db.php");
  4.     include("../functions/functions.php");
  5.     include("../includes/header.php");
  6.  
  7.     ?>
  8.  
  9.         <section>
  10.             <div class="container">
  11.                 <div class="row">
  12.                     <?php include("../includes/nav.php");?>
  13.  
  14.                     <div class="col-sm-9 padding-right">
  15.                         <?php
  16.                         //$ip = getRealIpAddress();
  17.                         //echo $ip;
  18.                         ?>
  19.                         <div class="features_items"  id="products_box"><!--features_items start-->
  20.                             <h2 class="title text-center">Checkout</h2>
  21.  
  22.                             <?php
  23.                             if(!isset($_SESSION['customer_email']))
  24.                             {
  25.                                 include("customer_login.php");
  26.  
  27.                             }
  28.                             else
  29.                             {
  30.                                 include("payment_options.php");
  31.                             }
  32.  
  33.                             ?>
  34.  
  35.  
  36.                         </div><!--features_items Ends-->
  37.  
  38.  
  39.                     </div><!--/category-tab-->
  40.  
  41.  
  42.  
  43.                 </div>
  44.             </div>
  45.         </div>
  46.     </section>
  47.  
  48.     <?php include("../includes/footer.php");?>
  49.     </body>
  50.     </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement