1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php ///////////////////////////////////////////// // Shadowed Portal // ///////////////////////////////////////////// // Copyright (C) 2003 by Shadowed Works. // // Please read our terms and conditions // // at http://www.shad0wed.com/. // ///////////////////////////////////////////// // !Donnot Edit This File! // ///////////////////////////////////////////// $users_online = ""; $count_online = 0; $dir = stripslashes($root."/users"); $handle=@opendir($dir); while ($file = readdir($handle)) { if ($file != "." && $file != ".." && $file != "index.html") { if(!is_dir($dir."/".$file)) { $rank = 0; $user_online = "0"; require($dir."/".$file); if($user_online == "1") { if(($t_minutes_f > ($login_time + $unlog_at)) || ($login_time < 0)) { $user_online = 0; require($root."/user_info.php"); wf($dir."/".$file,"w",$user_info); } } if($rank < $safe_rank_min) { if($t_minutes_f > ($login_time + $user_delete_at)) { unlink($dir."/".$file); } } if($user_online == "1") { $users_online = $users_online . "<a href=\"$url/load.php?viv=Profile&user=$username\">$username</a> "; $count_online++; } } } } closedir($handle); ?>
|