Advertisement
craygo

checkout.php

Jul 18th, 2011
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.67 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3.  
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5.  
  6. <head>
  7.   <title><?php echo $title; ?></title>
  8.  
  9.   <?php echo $css; ?>
  10.  
  11. <meta http-equiv="X-UA-Compatible" content="IE=9" />
  12. </head>
  13.  
  14. <body>
  15.   <div id="wrapper" />
  16.     <div class="top" />
  17.       <div class="cart_list">
  18.         <h3>Your shopping cart</h3>
  19.         <div id="cart_content">
  20.           <?php
  21.           //print_r($this->session->userdata);
  22.           $this->load->view('chcart'); ?>
  23.         </div>
  24.       </div>
  25.     </div>
  26.     <div class="lower" />
  27.  
  28.  
  29.  
  30.     </div>
  31.   </div>
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement