special_show.php

来自「网站代码」· PHP 代码 · 共 38 行

PHP
38
字号
<?php
/*
*####################################################
* PHPCMS v3.0.0 - Advanced Content Manage System.
* Copyright (c) 2005-2006 phpcms.cn
*
* For further information go to http://www.phpcms.cn/
* This copyright notice MUST stay intact for use.
*####################################################
*/
defined('IN_PHPCMS') or exit('Access Denied');

include PHPCMS_ROOT."/module/article/common.php";

$specialid = intval($specialid);
if(!$specialid)	message('非法参数!请返回!','goback');

$special = $db->get_one("SELECT * FROM ".TABLE_SPECIAL." WHERE specialid=$specialid and channelid=$channelid ");
@extract($special);

$templateid = $templateid ? $templateid : "special_show";
$skindir = $skinid ? PHPCMS_PATH."templates/".$defaulttemplate."/skins/".$skinid : $skindir;

$adddate=date('Y-m-d',$addtime);
$specialpic = get_imgurl($specialpic);
$specialbanner = get_imgurl($specialbanner);

$position = "<a href='".$channelurl."'>".$channelname."首页</a> >> <a href='".$channelurl."special/'>专题首页</a>";

$meta_title = $specialname;
$meta_keywords = $meta_keywords ? $meta_keywords : strip_tags($_CHA['meta_keywords']);
$meta_description = $meta_description ? $meta_description : strip_tags($introduce);

$filecaching = 1;

include template("article",$templateid);
?>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?