teamid == $teamid) { $team = lookup_team($teamid); require_founder_login($user, $team); page_head("Remove Members from $team->name"); echo "
id."\"> "; start_table(); echo " Remove? Name Total credit Recent average credit "; $result = mysql_query("select * from user where teamid = $team->id"); $ninactive_users = 0; while ($user = mysql_fetch_object($result)) { $user_total_credit = format_credit($user->total_credit); $user_expavg_credit = format_credit($user->expavg_credit); echo " id> $user->name $user_total_credit $user_expavg_credit "; $ninactive_users++; } echo ""; if ($result) { mysql_free_result($result); } end_table(); echo ""; echo "
"; page_tail(); } else { error_page("You need to be the member and the founder of the team to edit team information."); } ?>