To make it more clear by using
in templates i am getting my added value. I am using
Code:
$fake_members = number_format($numbersmembers['users']) + $vbulletin->options['fake_stats_members'] ;
in php plugin code, and i am getting only 2nd part $vbulletin->options['fake_stats_members'] but i am not getting actual registered users value by using number_format($numbersmembers['users']). So i need is some thing instead of this to ge value.
--------------- Added [DATE]1246918984[/DATE] at [TIME]1246918984[/TIME] ---------------
SHowing just a 0. So bottom line didn't work.
Quote:
Originally Posted by Redlinemotorsports
Try this:
PHP Code:
$total_members= $numbermembers + $fake_members ;
Not sure if that'll work but its worth a shot
|
--------------- Added [DATE]1246955309[/DATE] at [TIME]1246955309[/TIME] ---------------
huuuh?