首页 >

织梦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文件

  • 织梦DedeCMS去掉图片超链注释文字的搞定方式
  • 织梦DedeCMS去掉图片超链注释文字的搞定方式 | 织梦DedeCMS去掉图片超链注释文字的搞定方式 ...

  • 织梦DedeCMS留言本类的plus插件调用{dede:}标签或头部尾
  • 织梦DedeCMS留言本类的plus插件调用{dede:}标签或头部尾 | 织梦DedeCMS留言本类的plus插件调用{dede:}标签或头部尾 ...

  • 织梦DedeCMS模板栏目交叉是什么如何用的教程
  • 织梦DedeCMS模板栏目交叉是什么如何用的教程 | 织梦DedeCMS模板栏目交叉是什么如何用的教程 ...