home *** CD-ROM | disk | FTP | other *** search
/ Practical Internet Web Designer 90 / PIWD90.iso / pc / contents / ecommerce / software / osCommerce.exe / oscommerce-2.2ms2 / catalog / cookie_usage.php < prev    next >
PHP Script  |  2003-06-05  |  4KB  |  97 lines

  1. <?php
  2. /*
  3.   $Id: cookie_usage.php,v 1.2 2003/06/05 23:26:23 hpdl Exp $
  4.  
  5.   osCommerce, Open Source E-Commerce Solutions
  6.   http://www.oscommerce.com
  7.  
  8.   Copyright (c) 2003 osCommerce
  9.  
  10.   Released under the GNU General Public License
  11. */
  12.  
  13.   require('includes/application_top.php');
  14.  
  15.   require(DIR_WS_LANGUAGES . $language . '/' . FILENAME_COOKIE_USAGE);
  16.  
  17.   $breadcrumb->add(NAVBAR_TITLE, tep_href_link(FILENAME_COOKIE_USAGE));
  18. ?>
  19. <!doctype html public "-//W3C//DTD HTML 4.01 Transitional//EN">
  20. <html <?php echo HTML_PARAMS; ?>>
  21. <head>
  22. <meta http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>">
  23. <title><?php echo TITLE; ?></title>
  24. <base href="<?php echo (($request_type == 'SSL') ? HTTPS_SERVER : HTTP_SERVER) . DIR_WS_CATALOG; ?>">
  25. <link rel="stylesheet" type="text/css" href="stylesheet.css">
  26. </head>
  27. <body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">
  28. <!-- header //-->
  29. <?php require(DIR_WS_INCLUDES . 'header.php'); ?>
  30. <!-- header_eof //-->
  31.  
  32. <!-- body //-->
  33. <table border="0" width="100%" cellspacing="3" cellpadding="3">
  34.   <tr>
  35.     <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
  36. <!-- left_navigation //-->
  37. <?php require(DIR_WS_INCLUDES . 'column_left.php'); ?>
  38. <!-- left_navigation_eof //-->
  39.     </table></td>
  40. <!-- body_text //-->
  41.     <td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
  42.       <tr>
  43.         <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
  44.           <tr>
  45.             <td class="pageHeading"><?php echo HEADING_TITLE; ?></td>
  46.             <td class="pageHeading" align="right"><?php echo tep_image(DIR_WS_IMAGES . 'table_background_specials.gif', HEADING_TITLE, HEADING_IMAGE_WIDTH, HEADING_IMAGE_HEIGHT); ?></td>
  47.           </tr>
  48.         </table></td>
  49.       </tr>
  50.       <tr>
  51.         <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  52.       </tr>
  53.       <tr>
  54.         <td class="main"><table border="0" width="40%" cellspacing="0" cellpadding="0" align="right">
  55.           <tr>
  56.             <td><?php new infoBoxHeading(array(array('text' => BOX_INFORMATION_HEADING))); ?></td>
  57.           </tr>
  58.           <tr>
  59.             <td><?php new infoBox(array(array('text' => BOX_INFORMATION))); ?></td>
  60.           </tr>
  61.         </table><?php echo TEXT_INFORMATION; ?></td>
  62.       </tr>
  63.       <tr>
  64.         <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>
  65.       </tr>
  66.       <tr>
  67.         <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox">
  68.           <tr class="infoBoxContents">
  69.             <td><table border="0" width="100%" cellspacing="0" cellpadding="2">
  70.               <tr>
  71.                 <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
  72.                 <td align="right"><?php echo '<a href="' . tep_href_link(FILENAME_DEFAULT) . '">' . tep_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE) . '</a>'; ?></td>
  73.                 <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
  74.               </tr>
  75.             </table></td>
  76.           </tr>
  77.         </table></td>
  78.       </tr>
  79.     </table></td>
  80. <!-- body_text_eof //-->
  81.     <td width="<?php echo BOX_WIDTH; ?>" valign="top"><table border="0" width="<?php echo BOX_WIDTH; ?>" cellspacing="0" cellpadding="2">
  82. <!-- right_navigation //-->
  83. <?php require(DIR_WS_INCLUDES . 'column_right.php'); ?>
  84. <!-- right_navigation_eof //-->
  85.     </table></td>
  86.   </tr>
  87. </table>
  88. <!-- body_eof //-->
  89.  
  90. <!-- footer //-->
  91. <?php require(DIR_WS_INCLUDES . 'footer.php'); ?>
  92. <!-- footer_eof //-->
  93. <br>
  94. </body>
  95. </html>
  96. <?php require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>
  97.