PHP Code:
// ### Get vBulletin Backend ###
require_once('./global.php');
// ### Run Query ###
$last5 = $DB_site->query("SELECT username FROM `user` ORDER BY joindate DESC LIMIT 5");
// ### Output Results ###
while ($last5members = $DB_site->fetch_array($last5))
{
$last5usernames = $last5members['username'];
echo $last5usernames;
echo '<br>';
}
Of course this is very basic ..it retreives the usernames and just puts them out in plain text..
you could utilize a little template..let me know if you want to if you cant figure it out