diff options
Diffstat (limited to 'html/pages/match.php')
-rwxr-xr-x | html/pages/match.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/html/pages/match.php b/html/pages/match.php new file mode 100755 index 0000000..22a0399 --- /dev/null +++ b/html/pages/match.php @@ -0,0 +1,10 @@ +<?php
+$mid = preg_replace('/\D/', '', $_GET[mid]);
+$pid = preg_replace('/\D/', '', $_GET[pid]);
+
+IF ($pid != "") {
+ include("match_player.php");
+} else {
+ include("match_info.php");
+}
+?>
\ No newline at end of file |