cms模板里调用SQL的操作方法

来源:爱站网时间:2018-10-17编辑:网友分享
建站后我们通常都会使用到数据库,比如现在要添加一个栏目,这个时候当然是技术人员自己新建一个新的数据库表了,那么cms模板里调用SQL的操作方法大家都清楚吗?今天就让爱站技术频道小编带你一起来了解一下吧!

  建站后我们通常都会使用到数据库,比如现在要添加一个栏目,这个时候当然是技术人员自己新建一个新的数据库表了,那么cms模板里调用SQL的操作方法大家都清楚吗?今天就让爱站技术频道小编带你一起来了解一下吧!

  模板里调用SQL:

  

1

2

3

4

5

6

 

{dede:sqlsql="selecta.id,a.title,a.writer,a.pubdate,a.typeid,b.aid,b.sexfromdede_archivesaLEFTJOINdede_addonarticlebonb.aid=a.idwherea.typeid='7'anda.writer=~writer~andb.sex='男'orderbya.pubdatedescLIMIT0,5"}

  • 文章ID:[field:id/]
  • 标题:"[field:idfunction='GetOneDocUrl(@me)'/]">[field:title/]
  • 作者:[field:writer/]
  • 性别:[field:sex/]
  • {/dede:sql}

     

     

      a.typeid=7 调用ID为7的栏目 如果不需要指定栏目ID 那么你可以把 a.typeid='7' and 删掉

      a.writer=~writer~ 调用当前文章的作者,调用指定的作者,可以这样写a.writer='admin' 这样就是指定调用admin这个作者的文档

      b.sex=男 设置性别,也就是自定义字段。如果你的自定义字段不是sex 那么你只要把sql里的b.sex 改成你的字段,例如 name 改成b.name

      LIMIT 0,5 设置要调用的条数,我这里写的是5条,自行修改.

      指定调用2个栏目的话 可以把where a.typeid='7' 修改为 where a.typeid='7' and a.typeid='8'

      这样就指定调用栏目ID 为 7和8的栏目

      GetOneDocUrl 函数 放到incluce/extend.func.php 文件中,这个函数是用来调用文档的静态URL的。

      

    1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

     

    functionGetOneDocUrl($aid)

    {

    global$dsql;

    include_once(DEDEINC."/channelunit.func.php");

    $aid=trim(ereg_replace('[^0-9]','',$aid));

     

    $chRow=$dsql->GetOne("Selectarc.*,ch.maintable,ch.addtable,ch.issystemFrom`dede_arctiny`arcleftjoin`dede_channeltype`chonch.id=arc.channelwherearc.id='$aid'");

     

    if(!is_array($chRow)){

    return$reArr;

    }

    else{

    if(empty($chRow['maintable']))$chRow['maintable']='dede_archives';

    }

     

    if($chRow['issystem']!=-1)

    {

    $nquery="Selectarc.*,tp.typedir,tp.topid,tp.namerule,tp.moresite,tp.siteurl,tp.sitepath

    From`{$chRow['maintable']}`arcleftjoin`dede_arctype`tpontp.id=arc.typeid

    wherearc.id='$aid'";

    }

    else

    {

    $nquery="Selectarc.*,1asismake,0asmoney,''asfilename,tp.typedir,tp.topid,tp.namerule,tp.moresite,tp.siteurl,tp.sitepath

    From`{$chRow['addtable']}`arcleftjoin`dede_arctype`tpontp.id=arc.typeid

    wherearc.aid='$aid'";

    }

     

    $arcRow=$dsql->GetOne($nquery);

     

    $Url=GetFileUrl($aid,$arcRow['typeid'],$arcRow['senddate'],$reArr['title'],$arcRow['ismake'],$arcRow['arcrank'],$arcRow['namerule'],$arcRow['typedir'],$arcRow['money'],$arcRow['filename'],$arcRow['moresite'],$arcRow['siteurl'],$arcRow['sitepath']);

    return$Url;

    }

     

     

     

      上文是关于cms模板里调用SQL的操作方法介绍,相信大家都有了一定的了解,想要了解更多的建站内容,请继续关注爱站技术频道网吧!

    上一篇:cms调取数据库的操作步骤

    下一篇:CMS新建php页面时读取标签的实例演示

    您可能感兴趣的文章

    相关阅读

    热门软件源码

    最新软件源码下载