desithugg Posted July 25, 2006 Share Posted July 25, 2006 umm i want to view a number containg the money a person owns in the game but i wanna view it with using the commas after every 3 numbers like instead of showing 32231123 i want it to show 322,311,23 Link to comment https://forums.phpfreaks.com/topic/15611-adding-commas/ Share on other sites More sharing options...
wildteen88 Posted July 25, 2006 Share Posted July 25, 2006 Use [url=http://www.php.net/number_format]number_format[/url][code=php:0]$number = '123456789';echo number_format($number, '0', '.', ',');[/code] Link to comment https://forums.phpfreaks.com/topic/15611-adding-commas/#findComment-63520 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.