This is a list of maps that have received the most new records during the past 10 days.
2. On the page of a players detailed stats (example: http://timeruns.net/pm/57/) can you swap the postion of "Random Stats" and "Records you should improve"
Why? Records you should improve holds more interesting information than random stats (in my opinion)
3. It might be a cool idea to change "Register" to "My Stats" when you are logged in. This link would lead you to your detailed stats page.
It's quite easy with phpbb. Example code:
Code: Select all
<?php
define('IN_PHPBB', true);
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './forums/';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
include($phpbb_root_path . 'common.' . $phpEx);
include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
// Start session management
$user->session_begin();
$auth->acl($user->data);
$user->setup('viewforum');
?>
Code: Select all
<? if (!stristr($user->data['username'],"anonymous")) {
echo '<p>Welcome back '.$user->data['username'].'</p>';
} else {
echo '<a href="./forums/ucp.php?mode=register">Register</a>';
}?>
Some general information here:
https://wiki.phpbb.com/Practical.Displa ... rnal_pages