id and validate_state=0"); $foobar = mysql_fetch_object($result); if (!$foobar) return 0; mysql_free_result($result); return $foobar->total; } // show dynamic user info (private) // function show_user_stats_private($user) { row1("Account statistics"); row2(PROJECT." member since", time_str($user->create_time)); row2("Total credit", format_credit($user->total_credit)); row2("Pending credit", "View"); row2("Recent average credit", format_credit($user->expavg_credit)); $team_header = "Team
Change"; if ($user->teamid) { $result = mysql_query("select * from team where id = $user->teamid"); $team = mysql_fetch_object($result); row2($team_header, "id>$team->name"); } else { row2($team_header, "None"); } row2("Computers", "View"); row2("Results", "id>View"); if ($user->posts) { row2("Message board posts", "id>$user->posts messages"); } } // show static user info (private) // function show_user_profile_private($user) { if (is_valid_email_addr($user->email_addr)) { $email_text = $user->email_addr; } else { $email_text = "Verification pending"; } row1("Account information"); row2("Email address
Edit", $email_text ); row2("Name", $user->name); row2("URL", "http://$user->url"); row2("Country", $user->country); row2("Postal code", $user->postal_code); if ($user->signature) { $x = "
".htmlspecialchars($user->signature)."
"; row2("Forums signature", $x); } row2("", "Edit account info"); row1("Profile"); $sql = "SELECT * FROM profile WHERE userid = ".$user->id; $result = mysql_query($sql); if (mysql_num_rows($result) != 0) { row2("", "id>View / Edit"); row2("", "Delete"); } else { row2("", "Create"); } row1("Preferences"); row2("General", "View / Edit"); row2(PROJECT, "View / Edit"); } // show summary of dynamic and static info (public) function show_user_summary_public($user) { row1("Account data for $user->name"); row2(PROJECT." member since", time_str($user->create_time)); row2("Country", $user->country); if (strlen($user->url)) { row2("URL", "url>http://$user->url"); } row2("Total credit", format_credit($user->total_credit)); row2("Recent average credit", format_credit($user->expavg_credit)); if ($user->teamid) { $result = mysql_query("select * from team where id = $user->teamid"); $team = mysql_fetch_object($result); row2("Team", "id>$team->name"); } else { row2("Team", "None"); } if ($user->show_hosts) { row2("Computers", "id>View"); } else { row2("Computers", "hidden"); } if ($user->posts) { row2("Message board posts", "id>$user->posts"); } if ($user->has_profile) { row2("Profile", "id>view"); } } // show a summary of the user. // NOTE: This is intended to be shown only to that user. // it has info that other users aren't supposed to see function show_user_page_private($user) { start_table("width=80%"); show_user_profile_private($user); // NOTE: Will include the actual user profile. show_user_stats_private($user); end_table(); } function user_table_start() { start_table(); echo " Rank Name Recent average credit Total credit Country Participant since "; } function show_user_row($user, $i) { echo " $i ", user_links($user), " ", format_credit($user->expavg_credit), " ", format_credit($user->total_credit), " ", $user->country, " ", time_str($user->create_time)," "; } ?>