blob: 8dfcee133cbe4468a027d78c166f54ce90ef2b5c (
plain)
1
2
3
4
5
6
7
8
9
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");
}
?>
|