7 my $dbh = ccbs::db_connect();
10 my $tournament = $cgi->param('tournament');
11 my $player = $cgi->param('player');
13 $dbh->do('DELETE FROM tournamentparticipation WHERE tournament=? AND player=?',
14 undef, $tournament, $player);
16 ccbs::print_see_other('registration.pl?id=' . $tournament);