at least i found out how to add it to all pages by editing each php-file.
have to fetch the navbar-template in every php-file, and add some more code-lines to each php-file to get the name of the newest member.
but there surely is some file that is automatically included everywhere, so i don't have to modify each file. how can i do that?
would be nice to get an answer...
for the newest member i had to add 'userstats' to the specialtemplates-array, and
Code:
$userstats = unserialize($datastore['userstats']);
$newusername = $userstats['newusername'];
$newuserid = $userstats['newuserid'];
eval('$navbar = "' . fetch_template('navbar') . '";');