欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php 文章调用类代码

程序员文章站 2022-09-24 19:11:02
调用方法如下: 复制代码 代码如下: $template= '
  • [{catet...
  • 调用方法如下:
    复制代码 代码如下:

    $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`)));