PHP 建站工具,CMS系统,类似与oscommerce

源代码在线查看: content.php

软件大小: 3822 K
上传用户: dante55
关键词: oscommerce PHP CMS
下载地址: 免注册下载 普通下载 VIP

相关代码

								/* -----------------------------------------------------------------------------------------
				   $Id: content.php,v 1.2 2004/02/17 16:20:07 oldpa Exp $   
				
				   TWE-Commerce - community made shopping   http://www.oldpa.com.tw				   Copyright (c) 2003 TWE-Commerce
				   -----------------------------------------------------------------------------------------
				   based on: 
				   (c) 2000-2001 The Exchange Project  (earlier name of osCommerce)
				   (c) 2002-2003 osCommerce(information.php,v 1.6 2003/02/10); www.oscommerce.com 
				   (c) 2003	 nextcommerce (content.php,v 1.2 2003/08/21); www.nextcommerce.org   
				   (c) 2003	 xt-commerce  www.xt-commerce.com
				   Released under the GNU General Public License 
				---------------------------------------------------------------------------------------*/
				$box_smarty = new smarty;
				$box_smarty->assign('tpl_path','templates/'.CURRENT_TEMPLATE.'/'); 
				$content_string='';
				$content_query=twe_db_query("SELECT
				 					content_id,
				 					categories_id,
				 					parent_id,
				 					content_title,
				 					content_group
				 					FROM ".TABLE_CONTENT_MANAGER."
				 					WHERE languages_id='".(int)$_SESSION['languages_id']."'
				 					and file_flag=1 and content_status=1");
				 while ($content_data=twe_db_fetch_array($content_query)) {
				 	
				 $content_string .= ' ' . $content_data['content_title'] . '';
				}
				if ($content_string!='') {
				
				
				
				
				    $box_smarty->assign('BOX_CONTENT', $content_string);
					$box_smarty->assign('language', $_SESSION['language']);
				   	  // set cache ID
				  if (USE_CACHE=='false') {
				  $box_smarty->caching = 0;
				  $box_content= $box_smarty->fetch(CURRENT_TEMPLATE.'/boxes/box_content.html');
				  } else {
				  $box_smarty->caching = 1;
				  $box_smarty->cache_lifetime=CACHE_LIFETIME;
				  $box_smarty->cache_modified_check=CACHE_CHECK;
				  $cache_id = $_SESSION['language'];
				  $box_content= $box_smarty->fetch(CURRENT_TEMPLATE.'/boxes/box_content.html',$cache_id);
				  }
				    
				    $smarty->assign('box_CONTENT',$box_content);
				
				
				
				}
				?>			

相关资源