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
|
<?php ///////////////////////////////////////////// // Shadowed Portal // ///////////////////////////////////////////// // Copyright (C) 2003 by Shadowed Works. // // Please read our terms and conditions // // at http://www.shad0wed.com/. // ///////////////////////////////////////////// // !Donnot Edit This File! // ///////////////////////////////////////////// require("custom_user_info.php"); $user_info = "<?php \$username = \"$username\"; \$password = \"$password\"; \$email = \"$email\"; \$website = \"$website\"; \$occupation = \"$occupation\"; \$interests = \"$interests\"; \$avatar = \"$avatar\"; \$user_online = \"$user_online\"; \$signature = \"$signature\"; \$info = \"$info\"; \$rank = $rank; \$login_time = $login_time; \$remote_ip = \"$remote_ip\"; \$messages = \"$messages\"; ".$custom_user_info." if((strtolower(\$usr) == strtolower(\$username)) && (\$pwd == \$password)) { \$u_rank = \$rank; \$online = 1; } ?>"; ?>
|