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 Quote 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] Quote Link to comment https://forums.phpfreaks.com/topic/15611-adding-commas/#findComment-63520 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.