8 lines
117 B
PHP
8 lines
117 B
PHP
|
<?php
|
||
|
|
||
|
require_once("../GoPage.php");
|
||
|
|
||
|
$page = new GoPage("/stats", "../../template.html");
|
||
|
echo $page->render();
|
||
|
?>
|