blob: 05fd413e3e029892ac52a5ef6f0a415a3b6a2c8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
$matchid = preg_replace('/\D/', '', $_GET[mid]);
echo'<br><table class = "zebra box" border="0" cellpadding="0" cellspacing="0" width="300">
<tbody>
<tr>
<th class="heading" align="center">Match Report</th>
</tr>
<tr>
<td align="center"><a href="./?p=report&id='.$matchid.'&rtype=bbcode">Forum BBCode Format</a></td>
</tr>
</tbody>
</table>';
?>
|