Quote:
Originally posted by JJR512
Yeah, it looks like the results are 1000 times higher than what they should be.
For example, I have 9771 posts on a 116,395-post board. I have 8.39469% of the total posts. Yet it says I have 8423.28%. (It also looks like the rounding is off.)
|
Hmm, I just plugged the numbers for your posts / your boards posts in and it worked fine:
PHP Code:
$percentoftotalposts = round((9774 / 116429) * 100,2);
echo $percentoftotalposts;
That echo's: 8.39
So I'm not totally sure. Paste the exact code that you have in member.php (just those couple lines, of course

), and I'll look them over. I don't really see anything to fix because it's working for me.