9 lines
221 B
PHP
9 lines
221 B
PHP
|
<?php
|
||
|
|
||
|
$template = <<<END
|
||
|
The Hall of Fame highlights the top ten players based on experience. Select a player to view their profile.<br /><br />
|
||
|
{{halltable}}
|
||
|
You may also return to <a href="index.php">town</a>.
|
||
|
END;
|
||
|
|
||
|
?>
|