lol. Okay try this... I didn't realise the adding was above the } else {
PHP Code:
$qbtime = (time() - $userinfo[joindate]) / 2592000; // Days Joined
if ($qbtime < 1) { // User has been a member for less than one day.
$qbpermonth = "$userinfo[quads]";
} else {
$qbpermonth += $userinfo[quads] + $userinfo[bikes];
$qbpermonth = sprintf("%.2f",($qbpermonth / $qbtime));
}