teamid == $team->id) { page_head("Unable to add $user->name"); echo "You are already a member of $team->name."; } else { $success = user_join_team($team,$user); if ($success == true) { page_head("Joined $team->name"); echo "

Joined team

"; echo "You have joined id>$team->name. "; } else { page_head("Error"); echo "Couldn't join team - please try later.\n"; } } page_tail(); ?>