dedecms显示最近浏览文章代码

快乐总和宽厚的人相伴,财富总与诚信的人相伴,智慧总与高尚的人相伴,魅力总与幽默的人相伴,健康总与豁达的人相伴。

有时为了用户体验,我们想知道最近客户都浏览了什么页面,那么怎么调用呢?下面分享下代码
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 `xjq_zj`  where aid='$aid' and mid='$mid'");
if(!$row){
$dsql->ExecuteNoneQuery("INSERT INTO xjq_zj( `id`, `mid`, `ip`,`aid` ,`logintime`)
VALUES (  '',$mid, '$joinip',$aid,$nowTime) ");
}
$db->SetQuery(" Select title,xjq_archives.id From xjq_archives  join xjq_zj on xjq_archives.id=xjq_zj.aid where xjq_zj.mid='$mid' order by logintime desc limit 1,5");
$db->Execute();
while($row = $db->GetArray())
{
echo "document.write(\&;\&;);\r\n";
}


}
if(!$mid){
$m = $dsql->GetOne(" Select * From `xjq_zjw`  where aid='$aid' and ip='$joinip'");
if(!$m){
$dsql->ExecuteNoneQuery("INSERT INTO xjq_zjw( `id`, `mid`, `ip`,`aid` ,`logintime`)
VALUES (  '',$mid, '$joinip',$aid,$nowTime) ");
}
$db->SetQuery(" Select title,xjq_archives.id From xjq_archives  join xjq_zj on xjq_archives.id=xjq_zj.aid where xjq_zjw.ip='$joinip' order by logintime desc limit 1,5");
$db->Execute();
while($row = $db->GetArray())
{
echo "document.write(\&;\&;);\r\n";
}


}


exit();


?>


以上就是dedecms显示最近浏览文章代码。再也不见,是我们送给彼此最好的礼物。更多关于dedecms显示最近浏览文章代码请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
dedecms如何实现任意页面调用当前会员信息的方

DedeCMS织梦判断是否有二级栏目输出HTML代码

织梦dedecms dede:arclist输出取消换行符

dedecms文章添加字段填栏目id,内容页调用字段里的栏目文章

dedeCMS首页列表页文章页调用tag的方法