真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

帝國cms加入統(tǒng)計代碼的簡單介紹

帝國cms怎么批量添加信息的tags

修改步驟:

站在用戶的角度思考問題,與客戶深入溝通,找到魯山網(wǎng)站設(shè)計與魯山網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設(shè)計、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、網(wǎng)絡(luò)空間、企業(yè)郵箱。業(yè)務(wù)覆蓋魯山地區(qū)。

1、以下代碼加入到admin/ecmsinfo.php,在任意2個elseif中間插入就行

elseif($enews=="AddTags_all")//列表批量添加Tags

{

$classid=$_POST['classid'];

$id=$_POST['id'];

$tags=$_POST['add_listtags'];

$newstime=time();

eInsertTags2($tags,$classid,$id,$newstime);

}

2、將以下代碼加入到class/uesrfun.php

//加入TAG表

function eInsertTags2($tags,$classid,$id,$newstime){

global $empire,$dbtbpre,$class_r;

if(!trim($tags))

{

printerror("TAGS信息不能為空", "", 1, 0, 1);

return '';

}

$count = count($id); //統(tǒng)計ID數(shù)量

$tags = RepPostVar($tags);

$tag = explode(",", $tags);

if (emptyempty($count))

{

printerror("未選擇信息ID", "", 1, 0, 1);

}

if (count($tag)1)

{

printerror("只能添加一個TAGS詞", "", 1, 0, 1);

}

$classid=(int)$classid;

$id[$i] = (int)$id[$i];

$mid=(int)$class_r[$classid][modid];

for($i=0;$i$count;$i++)

{

$tbname=$class_r[$classid][tbname];//獲取表名

$r=$empire-fetch1("select tagid from {$dbtbpre}enewstags where tagname='$tags' limit 1");

$t = $empire-fetch1("select infotags from {$dbtbpre}ecms_".$tbname." where id='$id[$i]'");

$taga=$t['infotags'].",".$tags; //組合TAGS

$tagb[$i] = explode(",",$taga); //設(shè)置數(shù)組

$tagc=array_values(array_unique($tagb[$i])); //數(shù)組排重

for($t=0;$tcount($tagc);$t++)

{//二級子循環(huán)TAGS數(shù)組輸出

$newtags[$i].= ",".$tagc[$t];

}

if($r[tagid])

{

$datar=$empire-fetch1("select tagid,classid,newstime from {$dbtbpre}enewstagsdata where tagid='$r[tagid]' and id='$id[$i]' and mid='$mid' limit 1");

if($datar[tagid])

{

if($datar[classid]!=$classid||$datar[newstime]!=$newstime)

{

$empire-query("update {$dbtbpre}enewstagsdata set classid='$classid',newstime='$newstime' where tagid='$r[tagid]' and id='$id[$i]' and mid='$mid' limit 1");

}

}

else

{

$empire-query("update {$dbtbpre}enewstags set num=num+1 where tagid='$r[tagid]'");

$empire-query("update {$dbtbpre}ecms_".$tbname." set infotags='".trim($newtags[$i],",")."' where id='$id[$i]'");

$empire-query("insert into {$dbtbpre}enewstagsdata(tagid,classid,id,newstime,mid) values('$r[tagid]','$classid','$id[$i]','$newstime','$mid');");

}

}

else

{

$empire-query("update {$dbtbpre}ecms_".$tbname." set infotags='".trim($newtags[$i],",")."' where id='$id[$i]'");

$empire-query("insert into {$dbtbpre}enewstags(tagname,num,isgood,cid) values('$tags',1,0,0);");

$tagid=$empire-lastid();

$empire-query("insert into {$dbtbpre}enewstagsdata(tagid,classid,id,newstime,mid) values('$tagid','$classid','$id[$i]','$newstime','$mid');");

}

}

printerror("批量添加TAGS成功", "", 1, 0, 1);

}

3、信息管理列表模板最后一列修改成以下代碼,在e/data/html/list/文件夾內(nèi)

td height="25" colspan="8"

table width="100%" border="0" cellpadding="0" cellspacing="0"

tr

td width="68%" height="25"

font color="#666666"備注:多選框藍色為未審核信息;發(fā)布者紅色為會員投稿;信息ID粗體為未生成,點擊ID可刷新頁面./font

/td

td width="32%" input type="text" name="add_listtags" id="add_listtags" size="50" value="" /

input type="submit" name="Submit100" value="添加TAGS" onClick="document.listform.enews.value='AddTags_all';document.listform.action='ecmsinfo.php';"

/td

/tr

/table

/td

如何在帝國CMS系統(tǒng)添加代碼?

幾種方式:

1、直接在帝國定義的userfun.php中擴充你自己定義的函數(shù),然后在相應(yīng)的程序頁面中直接引用函數(shù)即可;

2、在列表模版可以勾選“使用程序代碼”,然后寫入PHP代碼;

3、在相應(yīng)的頁面模版中直接嵌入PHP代碼;

4、單獨寫PHP程序,放在某個目錄下作為擴展,然后在帝國相應(yīng)程序頁面中引用。

微翼cms系統(tǒng)怎樣安裝統(tǒng)計代碼

首先在百度統(tǒng)計獲取安裝代碼,然后登陸DeDecms后臺,進入系統(tǒng)》系統(tǒng)基本參數(shù),復(fù)制統(tǒng)計代碼并粘貼到“網(wǎng)站版權(quán)、編譯JS等底部調(diào)用信息”,點擊確定完成。

DVBBS安裝百度統(tǒng)計方法

首先在百度統(tǒng)計獲取安裝代碼,然后登陸DVBBS后臺,進入常規(guī)管理》論壇基本設(shè)置,復(fù)制統(tǒng)計代碼并粘貼到“論壇版權(quán)信息”,點擊提交完成。

phpwind安裝百度統(tǒng)計方法

首先在百度統(tǒng)計獲取安裝代碼,然后登陸phpwind 后臺,進入全局》站點信息》,復(fù)制統(tǒng)計代碼并粘貼到“網(wǎng)站第三方統(tǒng)計代碼”文本框中,點擊提交完成。

Discuz安裝百度統(tǒng)計方法

首先在百度統(tǒng)計獲取安裝代碼,然后登陸discuz 后臺,進入全局站點信息,復(fù)制統(tǒng)計代碼并粘貼到“網(wǎng)站第三方統(tǒng)計代碼”文本框中,點擊提交。

帝國cms安裝百度統(tǒng)計方法

首先在百度統(tǒng)計獲取安裝代碼,登陸帝國cms后臺,進入模板管理》公共模板變量》管理模板變量,找到footer模板,點擊“修改”,將百度統(tǒng)計代碼復(fù)制粘貼到編輯框中的合適位置,然后點 擊提交。

然后進入數(shù)據(jù)更新,點擊“刷新首頁”完成。

phpcms安裝百度統(tǒng)計方法

首先在百度統(tǒng)計獲取安裝代碼,然后登陸phpcms后臺,進入模板風格》phpcms 管理模板,找到頁尾footer.html,點擊“修改”,將百度統(tǒng)計代碼復(fù)制粘貼到編輯框中的合適位置,點擊保存。

然后進入我的面板,點擊常用操作下的“更新首頁”完成。

很多CMS系統(tǒng)添加不了各站的統(tǒng)計工具,我要怎么分析詳細數(shù)據(jù)好呢,求指教?

添加統(tǒng)計代碼跟CMS沒有關(guān)系,把你的統(tǒng)計代碼添加到模板文件中就可以了


當前名稱:帝國cms加入統(tǒng)計代碼的簡單介紹
當前URL:http://weahome.cn/article/ddgpojc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部