::NoName Magazine 无名杂志 » 设计无名 » [HACK]首页显示游客 for4.0


2005-1-2 20:59 Sai
[HACK]首页显示游客 for4.0

index.php
找到
                                        [code]$whosonline[] = $online;
                                } else {
                                        break;[/code]
替换为
[code]                                                 $whosonline[] = $online;
                                } else {

$guestcount++;
                                        $guest['username']= "游客";
                                        $guest['icon']= "online_guest.gif";
                                        $guest['fid'] = $online['fid'] ? $forumname[$online['fid']] : 0;
                                        $guest['action'] = $actioncode[$online['action']];
                                        $guest['lastactivity'] = gmdate($timeformat, $online['lastactivity'] + ($timeoffset * 3600));
                                        $guestonline[]=$guest;[/code]

查找
                        [code]$onlinenum = $db->num_rows($query);
                        $guestcount = $onlinenum - $membercount;
                        unset($online);[/code]

替换为
[code]                        $onlinenum = $db->num_rows($query);
                        $count=count($guestonline);
                        for($i=0;$i<$count;$i++){
                                $whosonline[]=$guestonline[$i];
                        }
                        $guestcount = $onlinenum - $membercount;
                        unset($online);[/code]


最后自己找一个 online_guest.gif传到images/common下

2005-10-29 09:25 cnhotel
请问如何限制游客不能看到在线用户呢?

我想改成只能是登陆的用户才可以看到在线用户

只有管理员才可以看到他们的动作~~

页: [1]


Powered by Discuz! Archiver 5.5.0  © 2001-2006 Comsenz Inc.