600字范文,内容丰富有趣,生活中的好帮手!
600字范文 > 织梦DedeCMS模板中显示最近浏览文章列表

织梦DedeCMS模板中显示最近浏览文章列表

时间:2022-05-04 16:55:27

相关推荐

织梦DedeCMS模板中显示最近浏览文章列表

在制作织梦商城模板的时候经常会仿照shopex或者ecshop模式,在列表dede模板中添加最近浏览文章列表,这样可以提高客户的体验度,下面DedeCMS模板中心跟大伙分享下实现方法:

1.后台出执行如下语句

CREATE TABLE `数据库`.`dede_zj` (

`id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT,

`mid` INTEGER UNSIGNED NOT NULL,

`ip` VARCHAR(45) NOT NULL,

`aid` INTEGER UNSIGNED NOT NULL,

`logintime` VARCHAR(45) NOT NULL,

PRIMARY KEY (`id`)

)

2.新建php文件count_zj.php 存放到puls目录下内容如下

<?php

require_once(dirname(__FILE__).”/../include/common.inc.php”);

require_once(dirname(__FILE__).”/../member/config.php”);

global $cfg_ml;

$mid=$cfg_ml->M_ID;

$joinip = GetIP();

//当前时间戳

$nowTime = time();

if($mid)

{

$row = $dsql->GetOne(” Select * From `dede_zj` where aid=’$aid’ and mid=’$mid’”);

if(!$row){

$dsql->ExecuteNoneQuery(“INSERT INTO dede_zj( `id`, `mid`, `ip`,`aid` ,`logintime`)

VALUES ( “,$mid, ‘$joinip’,$aid,$nowTime) “);

}

$db->SetQuery(” Select title From dede_archives join dede_zj on dede_archives.id=dede_zj.aid where dede_zj.mid=’$mid’ order by logintime desc limit 1,5″);

$db->Execute();

while($row = $db->GetArray())

{

echo “document.write(‘”.$row[‘title’].”’);\r\n”;

}

}

if(!$mid){

$m = $dsql->GetOne(” Select * From `dede_zj` where aid=’$aid’ and ip=’$joinip’”);

if(!$m){

$dsql->ExecuteNoneQuery(“INSERT INTO dede_zj( `id`, `mid`, `ip`,`aid` ,`logintime`)

VALUES ( “,$mid, ‘$joinip’,$aid,$nowTime) “);

}

$db->SetQuery(” Select title From dede_archives join dede_zj on dede_archives.id=dede_zj.aid where dede_zj.ip=’$joinip’ order by logintime desc limit 1,5″);

$db->Execute();

while($row = $db->GetArray())

{

echo “document.write(‘”.$row[‘title’].”’);\r\n”;

}

}

exit();

?>

3.在文章模板处添加如下语句

document.getElementById(“zj”).innerHTML = document.getElementById(“span_zj”).innerHTML;

document.getElementById(“span_zj”).innerHTML = “”;

在引用处直接添加排版本人不在行,功能上是可以实现的,望各位自己酌情处理

补充一点,关于最近浏览链接的问题

<?php

require_once(dirname(__FILE__).”/../include/common.inc.php”);

require_once(dirname(__FILE__).”/../member/config.php”);

global $cfg_ml;

$mid=$cfg_ml->M_ID;

$joinip = GetIP();

//当前时间戳

$nowTime = time();

if($mid)

{

$row = $dsql->GetOne(” Select * From `dede_zj` where aid=’$aid’ and mid=’$mid’”);

if(!$row){

$dsql->ExecuteNoneQuery(“INSERT INTO dede_zj( `id`, `mid`, `ip`,`aid` ,`logintime`)

VALUES ( “,$mid, ‘$joinip’,$aid,$nowTime) “);

}

$db->SetQuery(” Select title,dede_archives.id From dede_archives join dede_zj on dede_archives.id=dede_zj.aid where dede_zj.mid=’$mid’ order by logintime desc limit 1,5″);

$db->Execute();

while($row = $db->GetArray())

{

echo “document.write(\”\”);”;

echo “document.write(‘”.$row[‘title’].”’);”;

echo “document.write(\”\”);\r\n”;

}

}

if(!$mid){

$m = $dsql->GetOne(” Select * From `dede_zjw` where aid=’$aid’ and ip=’$joinip’”);

if(!$m){

$dsql->ExecuteNoneQuery(“INSERT INTO dede_zjw( `id`, `mid`, `ip`,`aid` ,`logintime`)

VALUES ( “,$mid, ‘$joinip’,$aid,$nowTime) “);

}

$db->SetQuery(” Select title,dede_archives.id From dede_archives join dede_zj on dede_archives.id=dede_zj.aid where dede_zjw.ip=’$joinip’ order by logintime desc limit 1,5″);

$db->Execute();

while($row = $db->GetArray())

{

echo “document.write(\”\”);”;

echo “document.write(‘”.$row[‘title’].”’);”;

echo “document.write(\”\”);\r\n”;

}

}

exit();

?>

覆盖上面的php文件

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。