]> git.sesse.net Git - ccbs/blobdiff - html/do-unregister.pl
Add an option for un-registering people.
[ccbs] / html / do-unregister.pl
diff --git a/html/do-unregister.pl b/html/do-unregister.pl
new file mode 100755 (executable)
index 0000000..3751e30
--- /dev/null
@@ -0,0 +1,18 @@
+#! /usr/bin/perl
+
+use ccbs;
+use strict;
+use warnings;
+
+my $dbh = ccbs::db_connect();
+my $cgi = new CGI;
+
+my $tournament = $cgi->param('tournament');
+my $player = $cgi->param('player');
+
+$dbh->do('DELETE FROM tournamentparticipation WHERE tournament=? AND player=?',
+       undef, $tournament, $player);
+
+ccbs::print_see_other('registration.pl?id=' . $tournament);
+
+$dbh->disconnect;