sorry my bad, replace line:
echo " $unreadpm $newpm $allpm";
AS:
PHP Code:
echo "Unread PMs=".$unreadpm['messages'].'<br>';
echo "New PMs=".$newpm['messages'].'<br>';
echo "All PMs".$allpm['messages'].'<br>';
it will display the pm numbers correctly..
As for login info you can add this code:
PHP Code:
if ($bbuserinfo[userid]>=1)
{
?>
Use here any HTML code that will be displayed to your members
<?php
}
else
{
?>
Use here any HTML code that will be displayed to your non-members..
<?php
}
Hope this helps..