aboutsummaryrefslogtreecommitdiff
path: root/room.php
diff options
context:
space:
mode:
authorMaZderMind2014-10-01 10:33:00 +0200
committerMaZderMind2014-10-01 10:33:00 +0200
commitbf4c140f5438101d87dcb0395c7c778585b7fe09 (patch)
tree6ebaf53ec3205222ca00796f9d880f719b2bb54a /room.php
31c3 php player site
Diffstat (limited to 'room.php')
-rw-r--r--room.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/room.php b/room.php
new file mode 100644
index 0000000..8f4db1f
--- /dev/null
+++ b/room.php
@@ -0,0 +1,18 @@
+<?php
+
+require_once('lib/PhpTemplate.php');
+require_once('lib/helper.php');
+require_once('config.php');
+
+$room = $_GET['room'];
+
+$tpl = new PhpTemplate('template/page.phtml');
+echo $tpl->render(array(
+ 'page' => 'rooms',
+ 'baseurl' => baseurl(),
+ 'title' => 'Stream-Formats',
+ 'subtitle' => ucfirst($room),
+
+ 'room' => $room,
+ 'formats' => array('hd','hq','lq','audio','slides'),
+));