name"); if ($team->ping_user) { $ping_user = lookup_user_id($team->ping_user); echo "

Team member ".user_links($ping_user)." has asked you to transfer team founder's position to him/her. This can be because you left the team or haven't had contact with anyone inside the team for a long time and people are worried they are without a founder.

"; echo "

Use the following form to transfer team founder position or

id."\">

"; } echo "
id> "; start_table(); echo " New founder? Name Total credit Recent average credit "; $result = mysql_query("select * from user where teamid = $team->id"); $navailable_users = 0; while ($user = mysql_fetch_object($result)) { if($user->id!=$team->userid) { //don't show current founder $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 "; $navailable_users++; } } echo ""; mysql_free_result($result); end_table(); echo ""; echo "
"; page_tail(); ?>