Well, I'm making this script that deals with numbers that can go up to some VERY large numbers.
Like 1.0E+150
I have tried
<?php
echo number_format(1.0E+10);
?>
But that returns 10,000,000,000
I want a way to show that number, but without the comas.
Can anyone help?