Asheeown Posted April 10, 2007 Share Posted April 10, 2007 I have a search that when you search it shows how many results you are being shown and usually the number is between 100,000 and a 1,000,000 how can i add commas to a number for example: 989725? Link to comment https://forums.phpfreaks.com/topic/46438-solved-adding-commas-to-large-numbers/ Share on other sites More sharing options...
kenrbnsn Posted April 10, 2007 Share Posted April 10, 2007 Use the number_format() function. <?php $tst = '989725'; echo number_format($tst,0); ?> Ken Link to comment https://forums.phpfreaks.com/topic/46438-solved-adding-commas-to-large-numbers/#findComment-225865 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.