]> git.sesse.net Git - ccbs/blobdiff - html/song.pl
Add a backend for showing songs and the best scores on them.
[ccbs] / html / song.pl
diff --git a/html/song.pl b/html/song.pl
new file mode 100755 (executable)
index 0000000..1b1be39
--- /dev/null
@@ -0,0 +1,20 @@
+#! /usr/bin/perl
+
+use ccbs;
+use strict;
+use warnings;
+
+my $cgi = new CGI;
+my $id = $cgi->param('id');
+
+my $dbh = ccbs::db_connect();
+
+my $song = $dbh->selectrow_hashref('SELECT * FROM songs WHERE song=?', undef, $id);
+my $scores = ccbs::db_fetch_all($dbh, 'SELECT * FROM scores NATURAL JOIN players NATURAL JOIN tournaments WHERE song=? ORDER BY score DESC', $id);
+
+ccbs::print_header();
+ccbs::process_template('song.tmpl', $song->{'title'}, {
+       song => $song,
+       scores => $scores
+});
+$dbh->disconnect;