name; $team_id = $team->id; $nusers = $team->nusers; page_head("Remove Members from $team_name"); echo "

Remove members from $team_name

"; echo ""; echo "
"; echo "

Please note:"; echo "

    "; echo "
  • Only the founder may remove members from a team"; echo "
  • By removing a member, you will also remove their credit and CPU time "; echo "contributions to the team."; echo "
"; echo "

"; echo "
"; echo "
"; echo ""; echo "
"; echo ""; echo ""; echo ""; $query = sprintf( "select * from user where teamid = %d", $team_id ); $result = mysql_query($query); $ninactive_users = 0; for ($i = 0; $i < $nusers; $i++) { $user = mysql_fetch_object($result); echo ""; echo ""; $ninactive_users++; } echo ""; if ($result) { mysql_free_result($result); } echo "
Remove?NameTotal
Credit
id>"; echo "$user->name$user->total_credit
"; echo ""; echo ""; page_tail(); ?>