Quote:
Originally Posted by Paul M
Just use this bit of code to get the latest new user.
$userstats = unserialize($datastore['userstats']);
$newusername = $userstats['newusername'];
|
Like this?
In the PHP Includes Start:
ob_start();
$userstats = unserialize($datastore['userstats']);
$newusername = $userstats['newusername'];
echo $newusername;
$newestuser = ob_get_contents();
ob_end_clean();
Then in the template call $newestuser ????
If so, I've tried this and it doesn't work for some reason.
EDITED: This works for FORUMHOME, but not FORUMDISPLAY.