prepare('UPDATE team SET score = :score WHERE uid = :uid AND id = :team;'); $statement->bindValue(':score', $score); $statement->bindValue(':uid', $player); $statement->bindValue(':team', $team); $res = $statement->execute(); return 0; } ?>