I know this isn't much of a tutorial, but it's one problem in PHP that gets to coders quite a lot - how to put commas in numbers.
Instead of having a number outputted like "56298", you can put commas in it.
The code is very simple.
That will output:
Instead of having a number outputted like "56298", you can put commas in it.
The code is very simple.
PHP:
<?php
$number = 56298;
echo number_format( $number );
?>
That will output:
Code:
56,298