????
| Current Path : /home2/morganrand/www/store/ |
| Current File : /home2/morganrand/www/store/testimonial.php |
<?php
/*
$Id$
osCommerce, Open Source E-Commerce Solutions
http://www.oscommerce.com
Copyright (c) 2010 osCommerce
Released under the GNU General Public License
*/
require('includes/application_top.php');
$breadcrumb->add('Testimonials', tep_href_link('testimonial.php'));
require(DIR_WS_INCLUDES . 'template_top.php');
// BOF edit pages
$pages_name = "testimonial";
$page_query = tep_db_query("select pd.pages_title, pd.pages_body, p.pages_id, p.pages_name, p.pages_image, p.pages_status, p.sort_order from " . TABLE_PAGES . " p, " . TABLE_PAGES_DESCRIPTION . " pd where p.pages_name = '" . $pages_name . "' and p.pages_id = pd.pages_id and pd.language_id = '" . (int)$languages_id . "'");
$page = tep_db_fetch_array($page_query);
define('HEADING_TITLE', $page['pages_title']);
// EOF edit pages
?>
<div class="contentContainer">
<div class="contentText">
<div id="content">
<?php echo $page['pages_body']; ?>
</div>
<!--<div class="buttonSet">
<span class="buttonAction"><?php echo tep_draw_button(IMAGE_BUTTON_CONTINUE, 'triangle-1-e', tep_href_link(FILENAME_DEFAULT)); ?></span>
</div>-->
</div>
</div>
<?php
require(DIR_WS_INCLUDES . 'template_bottom.php');
require(DIR_WS_INCLUDES . 'application_bottom.php');
?>