Cute idea. I think you'd want to add something like this:
// show last username
if ($config['showreg']) {
$sth = $dbh->do_query("select U_Username from w3t_Users order by U_Number DESC limit 1");
$lastUser = $dbh -> fetch_array($sth);
$lastUserText = "Welcome to our newest member: $lastUser<BR>";
$dbh -> finish_sth($sth);
}
Then right above where he prints $showreg you add $lastUserText.
Let me know if it works, maybe I'll use it on my site. []/w3timages/icons/wink.gif[/]
-F