diff options
Diffstat (limited to 'html/pages/match_report.php')
-rwxr-xr-x | html/pages/match_report.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/html/pages/match_report.php b/html/pages/match_report.php new file mode 100755 index 0000000..0f452ba --- /dev/null +++ b/html/pages/match_report.php @@ -0,0 +1,17 @@ +<?php
+$matchid = preg_replace('/\D/', '', $_GET[mid]);
+
+echo'<br><table class = "box" border="0" cellpadding="1" cellspacing="2" width="300">
+ <tbody>
+ <tr>
+ <td class="heading" align="center">Match Reports</td>
+ </tr>
+ <tr>
+ <td class="dark" align="center"><a class="darkhuman" href="./?p=report&id='.$matchid.'&rtype=clanbase">Clanbase Cup Format</a></td>
+ </tr>
+ <tr>
+ <td class="dark" align="center"><a class="darkhuman" href="./?p=report&id='.$matchid.'&rtype=bbcode">Forum BBCode Format</a></td>
+ </tr>
+ </tbody>
+</table>';
+?>
\ No newline at end of file |