MyBB Support

Statistics of forum

Submitted by Fstyle, , Thread ID: 13758

Thread Closed
Fstyle
Novice
Level:
0
Reputation:
0
Posts:
46
Likes:
5
Credits:
86
04-12-2015, 01:03 PM
#1
I want to ask how to get it:
"Statistics
Posts:
3.8k
Threads:
344
"

Look forward to the answer.
Thank you

RE: Statistics of forum

Deleted_3747
0,004 IQ
Level:
19
Reputation:
216
Posts:
3.15K
Likes:
513
Credits:
150
04-12-2015, 01:42 PM
#2
I have a common one but it shows bars & stars would that be okey?

RE: Statistics of forum

Fstyle
Novice
Level:
0
Reputation:
0
Posts:
46
Likes:
5
Credits:
86
OP
04-12-2015, 03:13 PM
#3
sorry, I want to ask how the letter "k" after 3.8k

RE: Statistics of forum

Faded
Legend
Level:
21
Reputation:
215
Posts:
10.2K
Likes:
1.12K
Credits:
15K
04-12-2015, 03:32 PM
#4
04-12-2015, 03:13 PM
Fstyle Wrote:
sorry, I want to ask how the letter "k" after 3.8k

It's simple PHP.
[Image: InZ3hGx.png]

RE: Statistics of forum

Kisy
Closed Account
Level:
0
Reputation:
5
Posts:
24
Likes:
3
Credits:
52
15-12-2015, 06:53 PM
#5
PHP Code:
$numbers = array(1000,2000);


function 
format_number($number) {
    if(
$number >= 1000) {
       return 
$number/1000 "k";  
    }
    else {
        return 
$number;
    }
}


foreach(
$numbers as $number) {
    echo 
format_number($number);
    echo 
"<br>";
}

?>
1

Users browsing this thread: 1 Guest(s)