View Full Version : Is this code possible?
Phillip
October 27th, 2008, 02:36 PM
For friend count can you add "," to a number? so let's say you have 1000 friends it show as 1,000 or 10,000,000
Bascially just added , to a thousand+ digit friend count
applebooty
October 27th, 2008, 02:46 PM
Nope. You can do it manually though.
mrbrantley
October 27th, 2008, 02:57 PM
If youre using PHP, try
<?php
$value = 123456789;
echo number_format($value);
?>
applebooty
October 27th, 2008, 03:02 PM
PHP in a myspace layout? o.O
mrbrantley
October 27th, 2008, 08:13 PM
PHP in a myspace layout? o.O
</sarcasm>
I thought he was referring to a freind count on a script or site, not the layout code itself.
vBulletin® v3.7.1, Copyright ©2000-2009, Jelsoft Enterprises Ltd.