I would like to change this:
4000
to this
4,000
I am using this code
<?php echo number_format(($_SESSION["result"]),",") ; ?>
But its printing nothing...
I would like to change this:
4000
to this
4,000
I am using this code
<?php echo number_format(($_SESSION["result"]),",") ; ?>
But its printing nothing...
Have a look at the parameters shown here.
<?php echo number_format(($_SESSION["result"]), 3,",", "."); ?>