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