|
增加文章右上角三个小图标被点击的统计
|
|
|
|
Author: Autoit | Date:2006-07-30 | View: 11813 | Digg: 55 |
|
数据库执行: CREATE TABLE `mos_index2` (
`id` int(11) NOT NULL auto_increment,
`type` tinyint(1) NOT NULL default '0',
`contentid` int(11) NOT NULL default '0',
`dat` timestamp(14) NOT NULL,
UNIQUE KEY `id` (`id`)
) TYPE=MyISAM ; index2.php里增加: $stattype=0;
if ($task == "emailform") $stattype=1;
if ($task == "view") $stattype=2;
if (isset($do_pdf) && $do_pdf==1) $stattype=3;
if ($stattype>0) {
$query="insert into #__index2 (id,type,contentid) values ('',$stattype,$id)";
$database->setQuery( $query );
$database->query();
}针对文章上的"PDF" 、"Print" 、"Email"三个地方被点击的简单统计, 看结果要到库里看,使用Phpmyadmin之类的...
Permanent URL: http://www.autoit.cn/index.php/content/view/63/25.html
|