程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> php 文章調用類代碼

php 文章調用類代碼

編輯:PHP綜合
調用方法如下:
復制代碼 代碼如下:
$Template= '<li class="xxx">[<a href="{catedir}">{catetitle}</a>]<a href="{html}" title="{title}" >{title|6}{title2|20}</a>點擊數:{hits} 日期:{posttime|H:i:s}</li>';
$Article=new Article();
$Article->Template=$Template;
$Article->CateId=30;
DebugStr('根據模板調用文章');
DebugStr($Article->getArticleListByCateId());
$Template='<li class="xxx"><a href="{html}" title="{title}" >{title}</a>點擊數:{hits} 日期:{posttime|Y-m-d H:i:s}</li>';
$Article->Template=$Template;
$Article->CateId=30;
DebugStr($Article->getArticleListByCateId($Template, 30));
$Template='<a href="{html}" title="{title}" >{title}</a> 日期:{posttime}<br>';
$Article->Template=$Template;
$Article->CateId=28;
DebugStr($Article->getArticleListByCateId($Template, 28));

類代碼如下:
復制代碼 代碼如下:
<?php
/**
* 文章類,方便文章列表、內容的調用
* 僅支持PHP5
*
* 類函數列表:
* getArticleListByCateId();
*
* @author Zerolone
* @version 2011-3-14 9:53:42
*
* 2011-1-31 10:11:07 增加靜態方法 getCatePreviewUrl getPreviewUrl
*/
class Article {
public $CateId = 0; //欄目編號 0,可以為一個欄目編號, 或者多個欄目。例如:12, 或者12,13
public $Count = 10; //記錄數 10
public $TitleCount = 20; //文字顯示數 20
public $BeginCount = 0; //起始記錄數 0
public $OrderBy = 'id'; //排序字段 默認以id字段排序
public $OrderSort = 'DESC'; //排序順序 默認DESC,倒序
public $OrderBy2 = ''; //排序字段2
public $OrderSort2 = ''; //排序順序2
public $Area = 0; //顯示區域 0,全部顯示
public $Flag = ISSUEFLAG; //顯示文章狀態 2,2為 已保存 已發布
public $Pic = 0; //僅調用有圖片的 0,1為僅調用有圖的
public $Video = 0; //僅調用有視頻的 0,1為僅調用視頻的
public $notshowlist= 0; //不顯示不在列表中的 0,不顯示, 1 顯示
public $AndWhere = ''; //額外加入的查詢
public $Loop = 0; //循環列表 0,
public $Template = ''; //模板
public $IdList = ''; //Id列表,用於外部調用
//內部使用的變量
protected $SqlCateId = ''; //欄目Sql語句
protected $SqlCateTitleId = ''; //欄目Sql語句
protected $SqlArea = ''; //顯示區域Sql語句
protected $SqlFlag = ''; //狀態
protected $SqlNotShow = ''; //不顯示列表中
protected $SqlPic = ''; //是否僅調用圖片
protected $SqlVideo = ''; //是否僅調用視頻
protected $SqlOrder = ''; //排序
protected $SqlLimit = ''; //顯示個數
protected $SqlWhere = ''; //加入查詢
public $SqlStr = ''; //調試用
/**
* 初始化Sql語句
*
*/
function InitSql(){
//欄目編號
$CateId=$this->CateId;
if (strpos($CateId, ',')) {
$this->SqlCateId=' AND `cateid` in ('.$CateId.')';
} elseif ($CateId>0) {
$this->SqlCateId=' AND `cateid` ='.$CateId;
}
if ($CateId==0) $this->SqlCateId='';
/*
$CateId=$this->CateId;
$this->SqlCateTitleId=' AND `id` ='.$CateId;
*/
//顯示區域
$Area=$this->Area;
if ($Area>0) {
$Area+=0;
$this->SqlArea= ' AND `area'.$Area.'` =1';
}
//狀態
$this->SqlFlag= ' AND `flag` = '. $this->Flag;
//列表中不顯示
$this->SqlNotShow= ' AND `notshowlist` = '. $this->notshowlist;
//圖片
$Pic = $this->Pic;
if ($Pic==1){
$this->SqlPic= ' AND (`pic1` <>"" or `pic2`<>"") ';
}else {
$this->SqlPic= '';
}
//視頻
$Video = $this->Video;
if ($Video==1){
$this->SqlVideo= ' AND `isvideo`=1 ';
}else {
$this->SqlVideo= '';
}
//額外加入的查詢
$AndWhere = $this->AndWhere;
if ($AndWhere<>''){
$this->SqlWhere = ' And ' . $AndWhere;
}
//排序
$this->SqlOrder= ' ORDER BY `'.$this->OrderBy.'` '.$this->OrderSort;
if ($this->OrderBy2!='') $this->SqlOrder.= ' ,`'.$this->OrderBy2.'` '.$this->OrderSort2;
//顯示個數
$this->SqlLimit= ' LIMIT '.$this->BeginCount.', '.$this->Count.';';
}
/**
* 清除,置為默認
*/
function Clear(){
$this->CateId = 0; //欄目編號 0,可以為一個欄目編號, 或者多個欄目。例如:12, 或者12,13
$this->Count = 10; //記錄數 10
$this->TitleCount = 20; //文字顯示數 20
$this->BeginCount = 0; //起始記錄數 0
$this->OrderBy = 'id'; //排序字段 默認以id字段排序
$this->OrderSort = 'DESC'; //排序順序 默認DESC,倒序
$this->Area = 0; //顯示區域 0,全部顯示
$this->Flag = ISSUEFLAG; //顯示文章狀態 2,2為 已保存 已發布
$this->Pic = 0; //僅調用有圖片的 0,1為僅調用有圖的
$this->Video = 0; //僅調用有視頻的 0,1為僅調用視頻的
$this->notshowlist = 0; //不顯示不在列表中的 0,不顯示, 1 顯示
$this->AndWhere = ''; //額外加入的查詢
$this->Loop = 0; //循環列表 0,
$this->Template = ''; //模板
}
/**
* 返回文章內容字符串
*
* {<li class="xxx"><a href="{html}" title="{title}" >{title|20}{title2|20}</a>點擊數:{hits} {memo|20} 日期:{posttime|H:i:s y-m-d}</li>}
* 說明如下, 產生一個循環模板,{}裡面的說明如下
* html 鏈接,優先顯示跳轉鏈接
* title 標題,加|線後面的參數:1、為字數顯示限制,2、為字數限制後是否顯示省略符號, title為優先顯示title, title2為優先顯示title2
* hits 點擊率
* posttime 提交時間,後面的參數為日期格式化方法
* memo 調用文字,加|線後面的參數:1、為字數顯示限制,2、為字數限制後是否顯示省略符號
* loop 循環變量
*
* @return 文章列表
*/
function getArticleListByCateId(){
$this->InitSql();
$Str_Loop = '';
$ReturnString = '';
$Template = $this->Template;
//文章列表
$SqlStr = 'SELECT * FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.=$this->SqlNotShow; //是否顯示不顯示的
$SqlStr.=$this->SqlCateId; //欄目
$SqlStr.=$this->SqlArea; //區域
$SqlStr.=$this->SqlFlag; //狀態
$SqlStr.=$this->SqlPic; //圖片
$SqlStr.=$this->SqlVideo; //視頻
$SqlStr.=$this->SqlWhere; //額外的查詢
$SqlStr.=$this->SqlOrder; //排序
$SqlStr.=$this->SqlLimit; //顯示條數
$this->SqlStr=$SqlStr;
$this->OrderBy2 = '';
$this->OrderSort2 = '';
//標題1
@preg_match('/{title\|([\d].+?)}/i', $Template, $matches);
@$title_count = $matches[1];
//標題2
@preg_match('/{title2\|([\d].+?)}/i', $Template, $matches);
@$title2_count = $matches[1];
//調用文字
@preg_match('/{memo\|([\d].+?)}/i', $Template, $matches);
@$memo_count = $matches[1];
//時間顯示格式
@preg_match('/{posttime\|(.+?)}/i', $Template, $matches);
@$posttime_format=$matches[1];
//替換掉這些
$Template = preg_replace('/({title\|[\d].+?})/i', '{title}', $Template);
$Template = preg_replace('/({title2\|[\d]+.?})/i', '{title2}', $Template);
$Template = preg_replace('/({posttime\|.+?})/i', '{posttime}', $Template);
$Template = preg_replace('/({memo\|[\d].+?})/i', '{memo}', $Template);
//loop
$loop = $this->Loop;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$DB_Record_Arr = $MyDatabase->ResultArr;
foreach ( $DB_Record_Arr as $DB_Record ) {
$id = $DB_Record['id'];
$this->IdList .= $id . ',';
$title = $DB_Record['title'];
$title_full = $title;
$title2 = $DB_Record['title2'];
$titlestrip = strip_tags($title);
$memo = $DB_Record['memo'];
$posttime = $DB_Record['posttime'];
$reurl = $DB_Record['reurl'];
$url = $DB_Record['html'];
$hits = $DB_Record['hits'];
$titlecolor = $DB_Record['titlecolor'];
$catetitle = $DB_Record['catetitle'];
$catedir = $DB_Record['catedir'];
$catedesc = $DB_Record['catedesc'];
$Str_Loop = $Template;
//處理各個字符串
//跳轉鏈接,如果存在,則文章鏈接為跳轉鏈接
if ($reurl<>''){
$html = $reurl;
}else {
$html = SITE_URL . SITE_FOLDER . ARTICLEURL . $url;
}
$pic1 = $DB_Record['pic1'];
$pic2 = $DB_Record['pic2'];
if ($pic2<>''){
$pic = $pic2;
}else{
$pic = $pic1;
}
//標題長度 //調用文字
if ($title_count) $title = subString($title, $title_count);
if ($title2_count) $title2 = subString($title2, $title2_count);
if ($memo_count) $memo = subString($memo, $memo_count);
//文章標題顏色,用Style級別好像更高
if ($titlecolor<>'') $title = '<font style="color:'.$titlecolor.'">'.$title.'</font>';
//時間格式化
if ($posttime_format!=''){
$posttime=date($posttime_format, $posttime);
}else {
$posttime=date('Y-m-d H:i', $posttime);
}
//替換各個內容
//標題
$Arr_Search = array('{id}', '{title_full}', '{title}', '{title2}', '{titlestrip}', '{memo}', '{html}', '{hits}', '{posttime}', '{catetitle}', '{catedir}', '{pic}', '{pic1}', '{pic2}', '{loop}', '{catedesc}');
$Arr_Replace = array($id, $title_full, $title, $title2, $titlestrip, $memo, $html, $hits, $posttime, $catetitle, $catedir, $pic, $pic1, $pic2, $loop++, $catedesc);
$Str_Loop=str_replace($Arr_Search, $Arr_Replace, $Str_Loop);
$ReturnString.=$Str_Loop;
}
}
//用完清空
$this->Clear();
return $ReturnString;
}
/**
* 返回欄目裡面的html
*/
function DefaultHtml(){
$html='';
$this->InitSql();
//-------------------0
$SqlStr = 'SELECT `html` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.=$this->SqlCateId;//欄目
$SqlStr.=$this->SqlFlag;//狀態
$SqlStr.=$this->SqlOrder;//排序
$SqlStr.=$this->SqlLimit;//顯示個數
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$html = $MyDatabase->ResultArr [0][0];
}
return $html;
}
/**
* 獲取欄目地址
* @param $id 欄目編號
*/
static public function getCateHTML($id){
$html = '';
$SqlStr = 'SELECT `dir` FROM `'.DB_TABLE_PRE . 'article_cate`';
$SqlStr.= ' WHERE `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$html = $MyDatabase->ResultArr [0][0];
}
return $html;
}
/**
* 返回欄目標題
*/
function getCateTitle(){
$CateTitle='';
//-------------------0
$SqlStr = 'SELECT `title` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.=$this->SqlCateTitleId; //欄目
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$CateTitle = $MyDatabase->ResultArr [0][0];
}
return $CateTitle;
}
/**
* 獲取文章日期返回一個以 2011-1 這種類型的列表鏈接
*/
function getArticListDate(){
//欄目編號
$CateId=$this->CateId;
if (strpos($CateId, ',')) {
$this->SqlCateId=' AND `cateid` in ('.$CateId.')';
} elseif ($CateId>0) {
$this->SqlCateId=' AND `cateid` ='.$CateId;
}
$cateList='';
$intCount=0;
$strSearch=''; //搜索年月
$strMonth=''; //月名
//獲取今天的年-月
$year=date("Y",time());
$month=date("m",time());
//今年
$SqlStr = 'SELECT COUNT( * ) from `'.DB_TABLE_PRE . 'view_article`'.' WHERE DATE_FORMAT(`posttime`, \'%Y\')=\''.$year.'\'';
//欄目
$SqlStr.=$this->SqlCateId;
$MyDatabase->SqlStr = $SqlStr;
$MyDatabase=Database::Get();
if ($MyDatabase->Query ()) {
$intCount = $MyDatabase->ResultArr [0][0];
$cateList.=' <li class="lev1"><a href="#" class="year">'.$year.' ('.$intCount.')</a></li>';
}
//循環今年
for($i=$month;$i>0;$i--){
if (strlen($i)==1){
$strSearch= $year . '-0' . $i;
}else{
$strSearch= $year . '-' . $i;
}
switch ($i) {
case 1:
$strMonth='一月';
break;
case 2:
$strMonth='二月';
break;
case 3:
$strMonth='三月';
break;
case 4:
$strMonth='四月';
break;
case 5:
$strMonth='五月';
break;
case 6:
$strMonth='六月';
break;
case 7:
$strMonth='七月';
break;
case 8:
$strMonth='八月';
break;
case 9:
$strMonth='九月';
break;
case 10:
$strMonth='十月';
break;
case 11:
$strMonth='十一月';
break;
case 12:
$strMonth='十二月';
break;
}
$SqlStr = 'SELECT COUNT( * ) from `'.DB_TABLE_PRE.'article` WHERE DATE_FORMAT(`posttime`, \'%Y-%m\')=\''.$strSearch.'\'';
//欄目
$SqlStr.=$this->SqlCateId;
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query () ) {
$DB_Record = $MyDatabase->ResultArr [0];
$intCount = $DB_Record[0];
if($intCount>0){
$cateList.=' <li class="lev2"><a href="#" class="year">'.$strMonth.' ('.$intCount.')</a></li>';
}
}
}
//最近9年循環
for($i=$year-1;$i>$year-10;$i--){
$SqlStr = 'SELECT COUNT( * ) from `'.DB_TABLE_PRE.'article` WHERE DATE_FORMAT(`posttime`, \'%Y\')=\''.$i.'\'';
//欄目
$SqlStr.=$this->SqlCateId;
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query () ) {
$DB_Record = $MyDatabase->ResultArr [0];
$intCount = $DB_Record[0];
if($intCount>0){
$cateList.=' <li class="lev1"><a href="#" class="year">'.$i.' ('.$intCount.')</a></li>';
}
}
}
return $cateList;
}
/**
* 根據上級欄目編號, 返回欄目標題列表。
*
* @param 上級編號 $parentid
*
*/
function getTitleListByCateId($parentid){
$CateTitleList='';
//-------------------0------1------2
$SqlStr = 'SELECT `title`, `id`, `url` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE parentid=' . $parentid;
$SqlStr.= ' ORDER BY `level` ASC;';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$DB_Record_Arr = $MyDatabase->ResultArr;
foreach ( $DB_Record_Arr as $DB_Record ) {
if($DB_Record[2]==''){
$CateTitleList.= '<a href="article.php?id='.$DB_Record[1].'">'.$DB_Record[0].'</a> ';
}else{
$CateTitleList.= '<a href="'.$DB_Record[2].'?id='.$DB_Record[1].'">'.$DB_Record[0].'</a> ';
}
}
}
return $CateTitleList;
}
/**
* 根據欄目編號, 返回欄目文章圖文列表。
* @param $cateid 上級編號
* @param $limit 顯示條數
* @param $prev 前置標記
*/
function getArticlePicListByCateId($cateid, $limit, $prev=''){
$str_return='';
//-------------------0------1------2---------3-------4--------5
$SqlStr = 'SELECT `title`, `id`, `reurl`, `html`, `pic1`, `memo` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE `cateid`=' . $cateid;
$SqlStr.= ' AND `flag`=' . ARTICLE_FLAG;
$SqlStr.= ' AND `pic1`!=\'\'';
$SqlStr.= ' ORDER BY `order` ASC, `id` DESC';
$SqlStr.= ' LIMIT ' . $limit;
//echo $SqlStr;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$DB_Record_Arr = $MyDatabase->ResultArr;
foreach ( $DB_Record_Arr as $DB_Record ) {
$DB_Record[0] = subString($DB_Record[0], 18);
$DB_Record[5] = subString($DB_Record[5], 56);
$url= $DB_Record[3];
if($DB_Record[2]!='') $url= $DB_Record[2];
$str_return.= '<dl>';
$str_return.= '<dd><a href="'.$url.'"><img src="'.$DB_Record[4].'" width="110" height="85" /></a></dd>';
$str_return.= '<dt><a href="'.$url.'">'.$DB_Record[0].'</a>'.$DB_Record[5].'<a href="'.$url.'" class="view">查看</a></dt>';
$str_return.= '</dl>';
}
}
return $str_return;
}
/**
* 根據ID, 返回下級最大分類。
*
* @param 編號 $id
*
*/
function getSIdById($id){
$ReturnContent='';
//------------------0------1
$SqlStr = 'SELECT `id` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE `parentid`=' . $id;
$SqlStr.= ' ORDER BY `level` DESC';
// echo $SqlStr;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$ReturnContent = $MyDatabase->ResultArr [0][0];
}
return $ReturnContent;
}
/**
* 返回欄目標題
* @param $id 欄目編號
*/
function getCateTitleById($id){
$CateTitle='';
//-------------------0
$SqlStr = 'SELECT `title` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$CateTitle = $MyDatabase->ResultArr [0][0];
}
return $CateTitle;
}
/**
* 返回上級欄目ID
* @param $id 欄目編號
*/
function getParentCateIdById($id){
$CateTitle='';
//--------------------0
$SqlStr = 'SELECT `parentid` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$CateTitle = $MyDatabase->ResultArr [0][0];
}
return $CateTitle;
}
/**
* 根據文章編號,增加一個點擊
* @param $id 文章編號
*/
static public function UpdateHits($id){
//-------------------0
$SqlStr = 'UPDATE `' . DB_TABLE_PRE . 'article`';
$SqlStr.= ' SET `hits`=`hits`+1';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
$MyDatabase->ExecuteQuery ();
}
/**
* 根據文章編號,返回點擊數
* @param $id 文章編號
*/
static public function GetHits($id){
$ReturnContent='';
//-------------------0
$SqlStr = 'SELECT `hits` FROM `' . DB_TABLE_PRE . 'article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
// var_dump($SqlStr);
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$ReturnContent = $MyDatabase->ResultArr [0][0];
}
return $ReturnContent;
}
/**
* 根據編號, 返回內容
* @param $id 文章編號
*/
function getContentById($id){
$ReturnContent='';
//-------------------0
$SqlStr = 'SELECT `content` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$ReturnContent = $MyDatabase->ResultArr [0][0];
}
return $ReturnContent;
}
/**
* 根據編號, 返回地址
* @param $id 文章編號
*/
function getUrlById($id){
$ReturnContent='';
//------------------0
$SqlStr = 'SELECT `reurl` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$ReturnContent = $MyDatabase->ResultArr [0][0];
if($ReturnContent==''){
$ReturnContent='article_details.php?id='.$id;
}
}
return $ReturnContent;
}
/**
* 根據編號, 返回靜態頁面地址
* @param $id 文章編號
*/
function getHTMLById($id){
$ReturnContent='';
//------------------0
$SqlStr = 'SELECT `html` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) $ReturnContent = $MyDatabase->ResultArr [0][0];
return $ReturnContent;
}
/**
* 根據編號, 返回上一頁
* @param 編號 $id
* @param 欄目編號 $cateid
*/
function getPrevById($id, $cateid){
$ReturnContent='沒有文章';
//------------------0
$SqlStr = 'SELECT `title`, `html` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`<'.$id;
$SqlStr.= ' AND `cateid`='.$cateid;
$SqlStr.= ' AND `flag`=' . ARTICLE_FLAG;
$SqlStr.= ' ORDER BY `order` ASC, `id` desc';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) $ReturnContent = '<a href="'.$MyDatabase->ResultArr [0][1].'">'. subString($MyDatabase->ResultArr [0][0], 100) . '</a>';
return $ReturnContent;
}
/**
* 根據編號, 返回下一頁
*
* @param 編號 $id
* @param 欄目編號 $cateid
*/
function getNextById($id, $cateid){
$ReturnContent='沒有文章';
//------------------0
$SqlStr = 'SELECT `title`, `html` FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`>'.$id;
$SqlStr.= ' AND `cateid`='.$cateid;
$SqlStr.= ' AND `flag`=' . ARTICLE_FLAG;
$SqlStr.= ' ORDER BY `order` ASC, `id` desc';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) $ReturnContent = '<a href="'.$MyDatabase->ResultArr [0][1].'">'. subString($MyDatabase->ResultArr [0][0], 100) . '</a>';
return $ReturnContent;
}
/**
* 根據level, 返回導航信息
* @param $level
*/
function getNavByLevel($level){
$ReturnContent=SITE_NAV;
$ReturnContent.=ARTICLE_NAV;
//$level=substr($level, 0, 2);
//$level='01010101';
$level_list='';
$level_len=strlen($level);
for ($i=2; $i<$level_len;$i+=2){
$level_list.=substr($level,0,$i) . ',';
}
$level_list.=$level;
// DebugStr( $level_list);
$SqlStr = 'SELECT * FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE `level` in (' .$level_list . ')';
$SqlStr.= ' ORDER BY `level` ASC;';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$levels = $MyDatabase->ResultArr;
foreach ($levels as $level){
$ReturnContent.=' <a href="'.$level['dir'].'">'.$level['title'].' ></a>';
}
}
return $ReturnContent;
}
/**
* 首頁專用調用, 根據一個欄目編號, 返回該欄目下面的文章, 其中包括一張圖片。
* @param $cateid
*/
function getPartByCateId($cateid){
$strReturn='<dl>';
$id=0;
$SqlStr = 'SELECT * FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE `cateid` =' .$cateid;
$SqlStr.= ' AND `flag` ='.ARTICLE_FLAG;
$SqlStr.= ' AND `pic1` !=\'\'';
$SqlStr.= ' ORDER BY `order` ASC, `id` DESC';
$SqlStr.= ' LIMIT 1;';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
// DebugStr($SqlStr);
if ($MyDatabase->Query ()) {
$article = $MyDatabase->ResultArr[0];
$id = $article['id'];
$strReturn.='<dd><a href="'.$article['html'].'"><img src="'.$article['pic1'].'" width="145" height="120" /></a></dd>';
}
$strReturn.='<dt>';
//文章列表
$SqlStr = 'SELECT * FROM `'.DB_TABLE_PRE . 'view_article`';
$SqlStr.= ' WHERE `cateid` =' .$cateid;
$SqlStr.= ' AND `flag` ='.ARTICLE_FLAG;
$SqlStr.= ' AND `id` !='.$id;
$SqlStr.= ' ORDER BY `order` ASC, `id` DESC';
$SqlStr.= ' LIMIT 6;';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$articles = $MyDatabase->ResultArr;
$i=1;
foreach ($articles as $article){
if ($i==1){
$strReturn.='<a href="'.$article['html'].'" class="topic">'.subString($article['title'],34).'</a>';
}else{
$strReturn.='<a href="'.$article['html'].'">'.subString($article['title'],50).'</a>';
}
$i++;
}
}
$strReturn.='</dt></dl>';
return $strReturn;
}
/**
* 根據編號, 返回Level
* @param $id
*/
function getLevelById($id){
$ReturnContent='';
$SqlStr = 'SELECT `Level` FROM `'.DB_TABLE_PRE . 'article_cate`';
$SqlStr.= ' WHERE 1=1';
$SqlStr.= ' AND `id`='.$id;
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) $ReturnContent = $MyDatabase->ResultArr [0][0];
return $ReturnContent;
}
/**
* 顯示文章狀態狀態
*
* @param 整型 $flag
* @return 狀態字符串
*/
public static function printFlag ( $flag = 0 ){
switch ( $flag ){
case 0:
return "<Font color=\"#FF0000\">未存 未發</Font>";
case 1:
return "<Font color=\"#009900\">已存</Font> <Font color=\"#FF0000\">未發</Font>";
case 2:
return "<Font color=\"#009900\">已存 已發</Font>";
default:
return "未知狀態";
}
}
/**
* 顯示HTML生成狀態
*
* @param 整型 $flag
* @return 狀態字符串
*/
public static function printHtmlFlag ( $flag= 0 ){
switch ( $flag ){
case 0:
return "<Font color=\"#FF0000\">未生</Font>";
case 1:
return "<Font color=\"#009900\">已生</Font>";
default:
return "未知狀態";
}
}
/**
* 顯示視頻狀態
*
* @param 整型 $flag
* @return 狀態字符串
*/
public static function printVideoFlag ( $flag= 0 ){
switch ( $flag ){
case 1:
return '<Font color="red"><b>視</b></Font>';
default:
return '';
}
}
/**
* 顯示審核狀態
*
* @param 整型 $flag
* @return 狀態字符串
*/
public static function printIssueFlag ( $flag = 0 ){
switch ( $flag ){
case 1:
return "<Font color=\"#FF0000\">未審</Font>";
case 2:
return "<Font color=\"#009900\">已審</Font>";
default:
return "未知狀態";
}
}
/**
* 返回是否可以創建文件夾
*
* @param $dir 文件夾名
* @param $cateid 欄目編號
*/
public static function canCreateDir($dir, $cateid){
$can=true;
//文件夾為空, 肯定不能添加的
if ($dir==''){
$can=false;
}
//系統定義不能創建的目錄
if (strpos(CANTDIR, '|'. $dir . '|')){
$can=false;
}
//文章系統文件夾文件夾分類中是否已存在該文件夾
//-------------------0
$SqlStr = 'SELECT `dir` FROM `'.DB_TABLE_PRE . 'article_cate`' ;
$SqlStr.= ' WHERE `dir`=\'' . $dir . '\'';
$SqlStr.= ' AND `id`<>\'' . $cateid . '\'';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) $can=false;
//返回值
return($can);
}
/**
* 通過欄目編號, 獲取欄目預覽地址
* @param $cateid
*/
public static function getCatePreviewUrl($cateid){
$template_url ='';
$SqlStr = ' SELECT `template_url`';
$SqlStr.= ' FROM `'.DB_TABLE_PRE.'view_articlecate` ';
$SqlStr.= ' WHERE `id`='.$cateid;
$SqlStr.= ' LIMIT 1';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()){
$template_url = $MyDatabase->ResultArr [0][0];
}
return($template_url);
}
/**
* 通過文章編號, 獲取文章預覽地址
* @param $cateid
*/
public static function getPreviewUrl($id){
$template_url ='';
$SqlStr = ' SELECT `template_url`';
$SqlStr.= ' FROM `'.DB_TABLE_PRE.'view_articlelist` ';
$SqlStr.= ' WHERE `id`='.$id;
$SqlStr.= ' LIMIT 1;';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()){
$template_url = $MyDatabase->ResultArr [0][0];
}
return($template_url);
}
/**
* 更新HTML文件名
* @param $id 所屬id,沒有默認值,必須指定
* @param $posttime 提交時間,默認值為當前
*
* @return 更新後的地址
*/
function UpdateHTML($id, $posttime=''){
//如果沒有日期,則獲取當前時間
if ($posttime==''){
$posttime=time();
}else{
$posttime=strtotime($posttime);
}
$ArticlePath = date("ym",$posttime) . '/'. date("d",$posttime);
if (createFolder(ARTICLEPATH, $ArticlePath)){
$html = ARTICLEURL . $ArticlePath . '/' . date( "His", time() ) . rand( 1000, 9999 ) . '.html';
$MyDatabase=Database::Get();
$ArrField=array('html');
$ArrValue=array($html);
$MyDatabase->Update('article', $ArrField, $ArrValue, '`id`='.$id);
return($html);
}
}
/**
* 生成HTML文件
* @param $id
*/
function HTML($id){
}
/**
* 獲取欄目名
*
* @param $id 文章欄目編號
*/
function getCate($cateid){
$level = $this->getLevelById($cateid);
$level_len= strlen($level) / 2 ;
//level列表
$level_str='0';
for ($i=1;$i<=$level_len;$i++){
$level_str.= ','.substr($level,0, 2*$i);
}
$navbar = '<a href="'. SITE_URL .'">首 頁</a> >';
$SqlStr = ' SELECT * ';
$SqlStr.= ' FROM `'. DB_TABLE_PRE . 'article_cate`';
$SqlStr.= ' WHERE `level` in ('.$level_str.')';
$SqlStr.= ' ORDER BY `level` ASC';
$MyDatabase=Database::Get();
$MyDatabase->SqlStr = $SqlStr;
if ($MyDatabase->Query ()) {
$DB_Record_Arr = $MyDatabase->ResultArr;
foreach ( $DB_Record_Arr as $DB_Record ) {
$html = $DB_Record['id'];
if ($DB_Record['url']!='') $html=$DB_Record['url'];
$navbar.=' <a href="' . SITE_URL . SITE_FOLDER . CATEURL . $html .'/index.html">'. $DB_Record['title'] .'</a> >';
}
}
return $navbar;
}
}
?>

數據庫
復制代碼 代碼如下:
--
-- 表的結構 `mc_article`
--
CREATE TABLE IF NOT EXISTS `mc_article` (
`id` int(10) unsigned NOT NULL auto_increment COMMENT '編號',
`comment` tinyint(3) unsigned NOT NULL COMMENT '是否留言',
`comments` tinyint(3) unsigned NOT NULL COMMENT '留言條數',
`commentcheck` tinyint(3) unsigned NOT NULL COMMENT '回復審核',
`posttime` int(10) unsigned NOT NULL COMMENT '提交時間',
`title` varchar(255) NOT NULL COMMENT 'Title',
`title2` varchar(255) default NULL COMMENT 'Title2',
`content` text COMMENT 'Content',
`flag` tinyint(1) NOT NULL default '0' COMMENT '標志',
`cateid` int(10) unsigned NOT NULL default '0' COMMENT '欄目編號',
`sourceid` mediumint(8) unsigned NOT NULL default '0',
`reurl` varchar(255) default NULL COMMENT '跳轉地址',
`hits` mediumint(8) unsigned NOT NULL default '0' COMMENT '點擊數',
`author` varchar(255) default NULL COMMENT '作者',
`from` varchar(255) default NULL COMMENT '來源',
`keyword` varchar(255) default NULL COMMENT '關鍵字',
`order` tinyint(4) unsigned NOT NULL default '99' COMMENT '順序',
`memo` text COMMENT '簡介',
`pic1` varchar(255) default NULL COMMENT '圖片一',
`pic2` varchar(255) default NULL COMMENT '圖片二',
`userid` int(10) unsigned NOT NULL default '0' COMMENT '用戶編號',
`html` varchar(255) default NULL COMMENT '地址',
`ishtml` tinyint(3) unsigned NOT NULL default '0' COMMENT '是否生成',
`area` int(10) unsigned NOT NULL default '0' COMMENT '顯示區域',
`custom1` varchar(255) default NULL COMMENT '自定義1',
`custom2` varchar(255) default NULL COMMENT '自定義2',
`custom3` varchar(255) default NULL COMMENT '自定義3',
`custom4` varchar(255) default NULL COMMENT '自定義4',
`custom5` varchar(255) default NULL COMMENT '自定義5',
`res_id` int(10) unsigned NOT NULL default '0',
`special` varchar(255) default NULL,
`area1` tinyint(1) unsigned NOT NULL default '0',
`area2` tinyint(1) unsigned NOT NULL default '0',
`area3` tinyint(1) unsigned NOT NULL default '0',
`area4` tinyint(1) unsigned NOT NULL default '0',
`area5` tinyint(1) unsigned NOT NULL default '0',
`isvideo` tinyint(1) unsigned NOT NULL default '0' COMMENT '是否視頻節目',
`notshowlist` tinyint(4) NOT NULL default '0' COMMENT '不顯示在列表',
`titlecolor` varchar(7) default NULL COMMENT '標題顏色',
`url` varchar(255) default NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Article' AUTO_INCREMENT=87 ;
--
-- 轉存表中的數據 `mc_article`
--
INSERT INTO `mc_article` (`id`, `comment`, `comments`, `commentcheck`, `posttime`, `title`, `title2`, `content`, `flag`, `cateid`, `sourceid`, `reurl`, `hits`, `author`, `from`, `keyword`, `order`, `memo`, `pic1`, `pic2`, `userid`, `html`, `ishtml`, `area`, `custom1`, `custom2`, `custom3`, `custom4`, `custom5`, `res_id`, `special`, `area1`, `area2`, `area3`, `area4`, `area5`, `isvideo`, `notshowlist`, `titlecolor`, `url`) VALUES
(1, 0, 0, 0, 0, '學堂介紹', '', '<DL>\r\n<DD> </DD>\r\n<DT><FONT style="BACKGROUND-COLOR: #0000ff" color=#800000>【測試修改】</FONT>重慶漫想族文化<FONT color=#ff0000>傳播有限公司是一家集合原創</FONT>動畫、娛樂產品開發,提供多媒體制作並以電視、網絡傳播為平台的現代化動漫文化開發推廣策劃制作公司。於2008年4月入駐重慶高新開發區北部新區重慶動漫基地。<BR>漫想族公司通過自己多<STRONG>年的管理運作,建立了西南地區最</STRONG>大的無紙動畫生產基地,集合了業界內最優秀的精英的團隊。並與國內多家影視機構、出版社、數字藝術廠商、多媒體平台建立了良好的合作關系,實現優勢互補、資源共享,在業界和市場上都形成了廣泛和深遠的影響力。<BR>目前公司主要從事原創電視動畫、原創電影動畫等品牌產品的開發,同時還涉及光盤出版、圖書制作發行、廣告制作、游戲開發以及文化產品授權等業務領域。漫想族公司一直堅定信奉精品至上路線,努力為社會奉獻精品,努力開拓中國動漫市場。漫想族公司一直堅定信奉精品至上路線,努力為社會奉獻精品,努力開拓中國動漫市場。漫想族公司一直堅定信奉精品至上路線,努力為社會奉獻精品,努力開拓中國動漫市場。</DT>\r\n<P class=clrB></P></DL>', 0, 28, 0, '', 2, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(2, 0, 0, 0, 0, '公司簡介', '', '公司簡介公司簡介公司簡介公司簡介公司簡介公司簡介公司簡介公司簡介公司簡介公司簡介', 1, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(3, 0, 0, 0, 0, '最新動態', '', '<P><IMG alt="" src="http://localhost/article_pic/0912/28/0238278236.jpg" align=left border=0>將圖片放在這裡。圖文混排顯示效果。先上傳一張圖片。點擊預覽。復制圖片的地址。刪除原圖片。</P>\r\n<P>這樣圖片就混排了。</P>', 0, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(4, 0, 0, 0, 0, '插畫日常班', '', '<DL>\r\n<DD><IMG height=188 src="http://localhost/img/mxz.png" width=188></DD>\r\n<DT><SPAN class="mb5 fs14 fwB lh24 borB1S-CCC">插畫日常班</SPAN> 本課程將從目前游戲美術制作的最新技術發展,游戲公司的美術制作規范等實際需求出發,系統全面地介紹游戲美工的各項技術內涵精要、重點在培養學員的游戲美術理論和實際應用操作能力上。力圖使學員掌握游戲開發公司美術設計人員必須掌握的各項技術以及所必備的素質,結合實際產業資源,以大量的實際項目操作鍛煉學員,加強學員執行能力,縮短職場培訓時間,並指導其完成成熟的作品。<A class=details href="http://localhost/manage/article/add.php?id=3#"></A></DT>\r\n<P class=clrB></P></DL>', 1, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(5, 0, 0, 0, 0, '游戲人設周末班', '', '游戲人設周末班游戲人設周末班游戲人設周末班游戲人設周末班游戲人設周末班游戲人設周末班', 1, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(6, 0, 0, 0, 0, '時尚插畫名師班', '', '時尚插畫名師班時尚插畫名師班時尚插畫名師班時尚插畫名師班時尚插畫名師班', 1, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(7, 0, 0, 0, 0, '周末插畫名師班', '', '周末插畫名師班周末插畫名師班周末插畫名師班周末插畫名師班', 1, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(8, 0, 0, 0, 0, '無紙插畫日常班', '', '<P>無紙插<STRONG>畫日常</STRONG>班無紙班無紙班無紙班無<FONT color=#800000>紙班無紙班</FONT>無紙<FONT style="BACKGROUND-COLOR: #008000">班無紙班無</FONT>紙班無紙班無紙班無紙</P>\r\n<P><IMG src="http://localhost//article_pic/0911/30/1431034426.jpg"></P>\r\n<P> </P>\r\n<P>插畫日常班無紙插畫日常班</P>', 1, 28, 0, '', 9, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(9, 0, 0, 0, 0, 'QQ群列表', '', '<UL>\r\n<LI>建模群:15874233</LI>\r\n<LI>材質群:17068255</LI>\r\n<LI>動畫群:15874233</LI>\r\n<LI>動力學群:17068255</LI>\r\n<LI>realflow群:15874233</LI></UL>', 1, 28, 0, '', 1, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(73, 0, 0, 0, 1277028682, '沙發殺毒范德薩發', '', '', 2, 30, 0, '', 3, '', '', '', 99, '', '', '', 1, '/article//1006/20/1811352579.html', 1, 0, '青雲譜', '12121', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(74, 0, 0, 0, 1277028699, '殺毒范德薩發啥', '', '', 2, 31, 0, '', 0, '', '', '', 99, '', '', '', 1, '/article//1006/20/1811471203.html', 1, 0, '沙發的撒', '12312321', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(76, 0, 0, 0, 1277118129, 'testestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestestes', '', 'testestetseteste', 2, 39, 0, '', 4, '', '', '', 99, '中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試中文測試', '', '', 0, '/article//1006/21/1902177805.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(77, 0, 0, 0, 1277131621, '企業服務單頁調用演示', '', '企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示企業服務單頁調用演示', 1, 28, 0, '', 0, 'Zerolone', '網絡', '', 99, '', '', '', 1, '/article//1006/21/2247453051.html', 0, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(72, 0, 0, 0, 1277028648, 'sadfsadfsadfdas', '', '', 2, 30, 0, '', 0, '', '', '', 99, '', '', '', 1, '/article//1006/20/1811205532.html', 1, 0, '東湖區', '10000', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(14, 0, 0, 0, 0, '的沙發的傻', '', '殺毒發送', 1, 35, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/0844078459.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(15, 0, 0, 0, 0, '啊啊啊', '', '殺毒發送啥', 1, 35, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/0844164124.bmp', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(16, 0, 0, 0, 0, '辦不辦', '', '<P>阿斯頓飛</P>', 1, 35, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/0844291726.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(17, 0, 0, 0, 0, '曹超超', '', '<P>阿斯頓飛等等</P>', 1, 35, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/0844416262.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(18, 0, 0, 0, 0, '哒哒哒', '', '<P>哒哒哒</P>', 1, 35, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/0844532108.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(19, 0, 0, 0, 0, '鵝鵝鵝', '', '<P>鵝鵝鵝</P>', 1, 35, 0, '', 2, '', '', '', 255, '', '/article_pic/0912/04/0845122279.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(20, 0, 0, 0, 0, '煩煩煩', '', '<P>反反復復</P>', 1, 35, 0, '', 46, '', '', '', 255, '', '/article_pic/0912/04/1431094003.jpg', '/article_pic/0912/04/1431094003.jpg', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(21, 0, 0, 0, 0, '高高掛', '', '<P>高高掛</P>', 1, 34, 0, '', 2, '', '', '', 255, '', '/article_pic/0912/04/0913295177.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(22, 0, 0, 0, 0, '環境1', '', '撒飛灑', 1, 16, 0, '', 22, '', '', '', 255, '', '/article_pic/0912/04/1401331809.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(23, 0, 0, 0, 0, '環境12', '', '撒飛灑啥地方', 1, 16, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/1401463623.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(24, 0, 0, 0, 0, '環境3', '', '<P>阿斯頓飛</P>', 1, 16, 0, '', 1, '', '', '', 255, '', '/article_pic/0912/04/1402003098.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(25, 0, 0, 0, 0, '環境4', '', '<P>啊額外全額前外</P>', 1, 16, 0, '', 3, '', '', '', 255, '', '/article_pic/0912/04/1402126768.jpg', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(26, 0, 0, 0, 0, '阿薩法撒旦法', '', '<P>阿斯蒂芬撒旦法</P>', 1, 36, 0, '', 0, '', '', '', 255, '', '/article_pic/0912/04/1415452249.jpg', '/article_pic/0912/04/1415548027.jpg', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(27, 0, 0, 0, 0, '免費試聽', '', '漫想族公司一直堅定信奉精品至上路線,努力為社會奉獻精品,努力開拓中國動漫市場。在商務產品方面,公司目前作為騰訊公司最優秀的動漫供應商之一,和MSN中國唯一的游戲供應商,同時和中國移動、上海電力、愛國者、三星、優派、明基、GE、中國搜索等等許多在國內深有影響的商務對象展開合作,開發生產出了包括騰訊QQ寵物炫、騰訊QQ秀、MSN游戲等各類市場熱點產品。<BR>在原創動畫方面,公司已經先後策劃開發了《莫莫》、《夏橋街》、《哈米樂園》、《洛洛洲》、《摩爾莊園》等精品動畫系列。其中《莫莫》一片已於2008年7月底在重慶電視台少兒頻道試播,並於09年7月9日在中央電視台少兒頻道黃金時間段播出。對比國內同類產品,其出類拔萃的精良質量和優異的市場表現引起了行業內和市場人士的普遍矚目。<BR>2008年,漫想族被世界頂級數碼藝術設備廠商“wacom公司”授予“wacom數字藝術授權教室”稱號,並且開始著手打造國內動漫精英培訓的品牌。<BR>重慶漫想族文化傳播有限公司是一家集合原創動畫、娛樂產品開發,提供多媒體制作並以電視、網絡傳播為平台的現代化動漫文化開發推廣策劃制作公司。於2008年4月入駐重慶高新開發區北部新區重慶動漫基地。<BR><IMG src="/article_pic/0912/04/1442358107.jpg">', 1, 28, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(28, 0, 0, 0, 0, '圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2', '', '<P>圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2圖文調用2</P>', 1, 28, 0, '', 2, '', '', '', 255, '圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2圖文調用文字2', '/upload/1006/15/1134514548.png', '', 1, '/article//1006/15/1134525311.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(29, 0, 0, 0, 1276572840, '圖文新聞調用1圖文新聞調用1圖文新聞調用1圖文新聞調用1圖文新聞調用1', '', '<P>測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容</P>', 2, 28, 0, '', 6, '', '', '', 255, '測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容測試調用內容', '/upload/1006/15/1133493635.png', '', 1, '/article//1006/15/1134008735.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(30, 0, 0, 0, 0, '入學必讀', '', '<P>入學必讀入學必讀入學必讀入學必讀入學必讀入學必讀</P>', 2, 28, 0, '', 1, '', '', '', 255, '', '', '', 1, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(31, 0, 0, 0, 0, '付款方式', '', '<P>付款方式付款方式付款方式付款方式付款方式</P>', 2, 28, 0, '', 1, '', '', '', 255, '', '', '', 1, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(32, 0, 0, 0, 0, '教學環境', '', '<P>教學環境教學環境教學環境教學環境教學環境教學環境教學環境教學環境</P>', 2, 28, 0, '', 1, '', '', '', 255, '', '', '', 1, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(33, 0, 0, 0, 0, '學習設施', '', '<P>學習設施學習設施學習設施學習設施學習設施學習設施學習設施學習設施學習設施學習設施</P>', 2, 28, 0, '', 1, '', '', '', 255, '', '', '', 1, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(34, 0, 0, 0, 0, '交通指南', '', '<P>交通指南交通指南交通指南交通指南交通指南交通指南交通指南交通指南交通指南</P>', 2, 28, 0, '', 2, '', '', '', 255, '', '', '', 1, NULL, 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(35, 0, 0, 0, 1276572301, '周邊環境', '', '<P>周邊環境周邊環境周邊環境周邊環境周邊環境</P>', 2, 28, 0, '', 2, '', '', '', 255, '', '', '', 1, '/article//1006/15/1125011128.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(36, 0, 0, 0, 1276571931, '中China英English文混排AllArticle顯示Review', '', '<P>優惠活動優惠活動優惠活動優惠活動優惠活動優惠活動優惠活動</P>', 1, 28, 0, '111111111', 3, '磐石', 'China', '', 1, '', '', '', 1, '/article//1006/15/1118525811.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(37, 0, 0, 0, 0, '高校合作介紹', '', '高校合作介紹高校合作介紹高校合作介紹高校合作介紹高校合作介紹高校合作介紹高校合作介紹高校合作介紹高校合作介紹', 1, 7, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(38, 0, 0, 0, 0, '校企合作模式', '', '校企合作模式校企合作模式校企合作模式校企合作模式校企合作模式校企合作模式校企合作模式校企合作模式', 1, 7, 0, '', 2, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(39, 0, 0, 0, 0, '成功高校案例', '', '成功高校案例成功高校案例成功高校案例成功高校案例成功高校案例成功高校案例成功高校案例成功高校案例', 1, 7, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(40, 0, 0, 0, 0, '免費試聽', '', '', 1, 5, 0, '/lyrics.php', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(41, 0, 0, 0, 0, '優惠方式', '', '優惠方式優惠方式優惠方式優惠方式優惠方式優惠方式優惠方式優惠方式優惠方式', 1, 5, 0, '', 0, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(42, 0, 0, 0, 0, '報名付款', '', '報名付款報名付款報名付款報名付款報名付款報名付款報名付款', 1, 5, 0, '', 4, '', '', '', 255, '', '', '', 1, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(84, 0, 0, 0, 1277559750, '測試文章測試文章測試文章測試文章測試文章測試文章測試文章測試文章測試文章測試文章測試文章測試文章', '', '<P>  測試一篇簡單的文章</P>\r\n<P>  測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試</P>\r\n<P> </P>\r\n<P>一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試</P>\r\n<P> </P>\r\n<P>一篇簡單的文章測試一篇簡單的文章測試一篇簡單的</P>\r\n<P>文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一1111111111篇簡單的文章</P>\r\n<P>測試一篇簡單的文章測試一篇簡單的222222222222222222文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章測試一篇簡單的文章<IMG height=250 alt="" src="http://files.jb51.net/upload/1006/21/2312095366.jpg" width=324></P>\r\n<P></P>\r\n<P>  就是一篇簡33333333單的文章。</P>', 1, 39, 0, '', 27, 'Zerolone', 'Us', 'aaaa', 99, '', '', '', 0, '/article//1006262142309349.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(48, 0, 0, 0, 1277132550, '測試3', '', '<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>\r\n<P>測試3</P>', 2, 28, 0, 'aaa.php', 1, '', '', '', 255, '測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3測試3', '', '', 1, '/article//1006/21/2302306528.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(49, 0, 0, 0, 1277132514, '常見問題', '', '<P>常<FONT face=幼圓>見問</FONT><FONT face=楷體_GB2312 size=6>題常見<FONT size=3>問題</FONT><FONT size=7>常見問<FONT color=#800000>題常<FONT color=#000000><FONT size=6>常見</FONT><FONT size=3>問題</FONT></FONT><FONT size=7><FONT color=#000000>常見問</FONT><FONT color=#800000>題常<FONT color=#000000><FONT size=6>常見</FONT><FONT size=3>問題</FONT></FONT><FONT size=7><FONT color=#000000>常見問</FONT><FONT color=#800000>題常</FONT></FONT></FONT></FONT></FONT></FONT></FONT><FONT size=7>見問題常</FONT>見問</P>\r\n<P>題常<STRONG>見問題常見問題常見</STRONG>問題常見問題常見問題常見問題</P>', 2, 1, 0, '', 11, '', '', '', 255, '', '', '', 1, '/article//1006/21/2301543267.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(50, 0, 0, 0, 1277132501, '大類2', '', '大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2大類2', 2, 1, 0, '', 6, '', '', '', 255, '', '', '', 1, '/article//1006/21/2301418250.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(51, 0, 0, 0, 1277132482, '大類1', '', '大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1大類1', 2, 1, 0, '', 18, '', '', '', 255, '', '', '', 1, '/article//1006/21/2301226130.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(53, 0, 0, 0, 1276570387, '學員必讀學員必讀學員必讀學員必讀學員必讀學員必讀學員必讀', '', '學員必讀學員必<FONT color=#ff0000>讀學員必讀學員</FONT>必讀學員<STRONG>必讀</STRONG>學員必讀', 2, 28, 0, '', 0, '', '', '', 2, '', '', '', 1, '/article//1006/15/1049558883.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(75, 0, 0, 0, 1277041879, '圖片新聞', '', '啊殺毒封殺費啥的啥地方沙發阿薩法薩', 2, 38, 0, '', 0, '', '', '', 99, '', '/upload/1006/20/2151417687.jpg', '', 1, '/article//1006/20/2151438545.html', 1, 0, '', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(57, 0, 0, 0, 1276567102, '1、購買新房前的准備工作 ', '', '<P><A href="http://localhost/build_info.php?id=60#">1、購買新房前的准備工作</A> </P>\r\n<P><A href="http://localhost/build_info.php?id=60#"></A> </P>', 2, 38, 0, '', 12, 'Zerolone', 'China', '', 1, '', '', '', 1, '/article//1006/15/0958238672.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(58, 1, 10, 0, 1276091400, '可評論-審核-顯示10條測試', '', '<IMG src="http://localhost/upload/1006/09/2000133895.gif">', 2, 39, 0, '', 3, '磐石', 'China', '', 255, '', '', '', 1, '/article//1006/09/2156568810.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(59, 0, 0, 0, 1276092641, '不可評論-測試', '', '可評論-不審核-顯示5條測試可評論-不審核-顯示5條測試可評論-不審核-顯示5條測試可評論-不審核-顯示5條測試', 2, 39, 0, '', 0, '', '', '', 255, '', '', '', 1, '/article//1006/09/2211306069.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(60, 1, 3, 1, 1276092641, '可評論-不審核-顯示3條測試', '', '可評論-不審核-顯示3條測試可評論-不審核-顯示3條測試可評論-不審核-顯示3條測試可評論-不審核-顯示3條測試可評論-不審核-顯示3條測試可評論-不審核-顯示3條測試', 2, 39, 0, '', 2, '', '', '', 255, '', '', '', 1, '/article//1006/09/2211373089.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(61, 1, 11, 1, 1276567135, '2、選區域、挑房子', '', '<A href="http://localhost/build_info.php?id=60#">2、選區域、挑房子</A>', 2, 38, 0, '', 0, '磐石', 'China', '', 2, '', '', '', 1, '/article//1006/15/0959101794.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(62, 1, 3, 1, 1276567135, '3、簽定購房合同 ', '', '<A href="http://localhost/build_info.php?id=60#">3、簽定購房合同</A> ', 2, 38, 0, '', 2, '', '', '', 3, '', '', '', 1, '/article//1006/15/0959241646.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(63, 0, 0, 0, 1276567135, '4、付款', '', '<U><FONT color=#800080>4、付款</FONT></U>', 2, 38, 0, '', 0, '', '', '', 4, '', '', '', 1, '/article//1006/15/1003181891.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(67, 0, 0, 0, 1276567500, '5、收房 ', '', '<U><FONT color=#800080>5、收房 </FONT></U>', 2, 38, 0, '', 0, '', '', '', 5, '', '', '', 1, '/article//1006/15/1005471305.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(68, 0, 0, 0, 1276567550, '6、房屋產權證辦理', '', '<U><FONT color=#800080>6、房屋產權證辦理</FONT></U>', 2, 38, 0, '', 0, '', '', '', 6, '', '', '', 1, '/article//1006/15/1005599659.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(69, 0, 0, 0, 1277028113, ' 某處xxxxxxxx', '', '', 2, 29, 0, '', 1, '', '', '', 99, '', '', '', 1, '/article//1006/20/1802538786.html', 1, 0, '32套', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(70, 0, 0, 0, 1277028175, '1sdafadsfa', '', '', 2, 29, 0, '', 0, '', '', '', 99, '', '', '', 1, '/article//1006/20/1803088642.html', 1, 0, '99套', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(71, 0, 0, 0, 1277028189, '真真正正找找', '', '', 2, 29, 0, '', 0, '', '', '', 99, '', '', '', 1, '/article//1006/20/1803414657.html', 1, 0, '198套', '', '', '', '', 0, NULL, 0, 0, 0, 0, 0, 0, 0, '', NULL),
(80, 1, 3, 1, 1277543456, '111111111111', NULL, 'asfadsfas3432432', 1, 4, 0, NULL, 0, NULL, NULL, '', 99, NULL, NULL, NULL, 112929, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, NULL),
(81, 1, 3, 1, 1277543472, '111111111111', NULL, 'asfad[b]sfas3[/b]432432[z_newline]safdsaffdsaf[z_newline]sadfsafasfasfsafas[z_newline]adsfad[i]sfdsafafa[/i]fsfsf', 1, 4, 0, NULL, 0, NULL, NULL, '', 99, NULL, NULL, NULL, 112929, NULL, 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, NULL),
(83, 1, 3, 1, 1277543825, '1111111111111222222', NULL, 'asfad[b]sfas3[/b]432432[z_newline]safdsaffdsaf[z_newline]sadfsafasfasfsafas[z_newline]adsfad[i]sfdsafafa[/i]fsfsf', 2, 4, 0, NULL, 10, NULL, NULL, '', 99, NULL, NULL, NULL, 112929, '/article//1006/26/1717055304.html', 1, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, NULL),
(85, 0, 0, 0, 1279628931, 'asdf', NULL, 'dsaffddsafas', 1, 1, 0, NULL, 0, NULL, NULL, NULL, 99, NULL, NULL, NULL, 112929, '/article//1007/20/2028517174.html', 0, 0, NULL, NULL, NULL, NULL, NULL, 0, NULL, 0, 0, 0, 0, 0, 0, 0, NULL, NULL);

分類結構
復制代碼 代碼如下:
-- --------------------------------------------------------
--
-- 表的結構 `mc_article_cate`
--
CREATE TABLE IF NOT EXISTS `mc_article_cate` (
`id` int(10) unsigned NOT NULL auto_increment,
`parentid` int(10) default NULL,
`level` char(50) default NULL,
`title` char(100) default NULL,
`templateid` int(10) default NULL,
`forumid` int(10) default NULL,
`catetemplateid` int(10) default NULL,
`dir` char(100) default NULL,
`kind` tinyint(4) default '0' COMMENT '顯示方式',
`pagesize` tinyint(4) default '0' COMMENT '顯示條數',
`specialid` int(10) default '0' COMMENT '對應專題編號',
`url` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='cate' AUTO_INCREMENT=40 ;
--
-- 轉存表中的數據 `mc_article_cate`
--
INSERT INTO `mc_article_cate` (`id`, `parentid`, `level`, `title`, `templateid`, `forumid`, `catetemplateid`, `dir`, `kind`, `pagesize`, `specialid`, `url`) VALUES
(1, 0, '01', '測試大類', 9, NULL, 9, '/test/', 0, 0, 0, ''),
(3, 0, '03', '樓盤調用', NULL, NULL, NULL, 'getbuild', 0, 0, 0, ''),
(4, 0, '04', '學習環境', NULL, NULL, NULL, '/asdf/', 0, 0, 0, ''),
(5, 0, '05', '報名方式', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(6, 0, '06', '學員作品', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(7, 0, '07', '校院合作', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(38, 0, '17', '購房寶典', 2, NULL, 2, 'baodian', 0, 0, 0, ''),
(25, 6, '0601', '插畫學員作品', NULL, NULL, NULL, NULL, 0, 0, 0, 'works.php'),
(26, 6, '0602', '動畫學員作品', NULL, NULL, NULL, NULL, 0, 0, 0, 'works.php'),
(28, 0, '08', '調用文章', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(29, 3, '0301', '新上市', NULL, NULL, NULL, 'getbuild/new', 0, 0, 0, ''),
(30, 3, '0302', '本月開盤', NULL, NULL, NULL, 'getbuild/this', 0, 0, 0, ''),
(31, 3, '0303', '下月開盤', NULL, NULL, NULL, 'getbuild/next', 0, 0, 0, ''),
(32, 25, '060101', '第一期', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(33, 25, '060102', '第二期', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(34, 25, '060103', '第三期', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(35, 25, '060104', '第四期', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(36, 26, '060201', '第一期', NULL, NULL, NULL, NULL, 0, 0, 0, ''),
(39, 1, '0101', 'sf', 9, NULL, 2, '/test/sub/', 0, 0, 0, '');

視圖代碼:
復制代碼 代碼如下:
-- 視圖結構 `mc_view_article`
CREATE VIEW `mc_view_article` AS select `mc_article`.`id` AS `id`,`mc_article`.`comment` AS `comment`,`mc_article`.`comments` AS `comments`,`mc_article`.`commentcheck` AS `commentcheck`,`mc_article`.`posttime` AS `posttime`,`mc_article`.`title` AS `title`,`mc_article`.`title2` AS `title2`,`mc_article`.`content` AS `content`,`mc_article`.`flag` AS `flag`,`mc_article`.`cateid` AS `cateid`,`mc_article`.`sourceid` AS `sourceid`,`mc_article`.`reurl` AS `reurl`,`mc_article`.`hits` AS `hits`,`mc_article`.`author` AS `author`,`mc_article`.`from` AS `from`,`mc_article`.`keyword` AS `keyword`,`mc_article`.`order` AS `order`,`mc_article`.`memo` AS `memo`,`mc_article`.`pic1` AS `pic1`,`mc_article`.`pic2` AS `pic2`,`mc_article`.`userid` AS `userid`,`mc_article`.`html` AS `html`,`mc_article`.`ishtml` AS `ishtml`,`mc_article`.`area` AS `area`,`mc_article`.`custom1` AS `custom1`,`mc_article`.`custom2` AS `custom2`,`mc_article`.`custom3` AS `custom3`,`mc_article`.`custom4` AS `custom4`,`mc_article`.`custom5` AS `custom5`,`mc_article`.`res_id` AS `res_id`,`mc_article`.`special` AS `special`,`mc_article`.`area1` AS `area1`,`mc_article`.`area2` AS `area2`,`mc_article`.`area3` AS `area3`,`mc_article`.`area4` AS `area4`,`mc_article`.`area5` AS `area5`,`mc_article`.`isvideo` AS `isvideo`,`mc_article`.`titlecolor` AS `titlecolor`,`mc_article`.`url` AS `url`,`mc_article`.`notshowlist` AS `notshowlist`,`mc_article_cate`.`parentid` AS `parentid`,`mc_article_cate`.`level` AS `level`,`mc_article_cate`.`title` AS `ctitle`,`mc_article_cate`.`templateid` AS `templateid`,`mc_article_cate`.`forumid` AS `forumid`,`mc_article_cate`.`catetemplateid` AS `catetemplateid`,`mc_article_cate`.`dir` AS `dir`,`mc_article_cate`.`kind` AS `kind`,`mc_article_cate`.`pagesize` AS `pagesize`,`mc_article_cate`.`specialid` AS `specialid`,`mc_article_cate`.`url` AS `curl` from (`mc_article` join `mc_article_cate` on((`mc_article`.`cateid` = `mc_article_cate`.`id`)));
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved