What I want to say is - numbers are BIG and it results in something similar to 1.00971009752E+13 ! How to display full number without these 1.00E+24 signs ? ( don't ask why I need it - I simply need it ) Thanks for your help, ActiveFrost.
<?php $number1 = 10097100975053 ; $number2 = 10097100975053541024129; $number3 = $number1 + $number2 ; echo number_format($number3, 2, '.', ''); ?> PHP: Result 10097100985150642061312.00
Thanks for the solution ( never had a chance to deal with number formatting ) - will check it a bit deeper ! +rep