Zahlen format
Dieses Script formatiert eine beliebige Zahl. In diesem Beispiel wird nach jeder 3. Zahl ein Punkt gesetzt. Script: <?php $zahl=1234567890.123456789; echo number_format($zahl,0,",","."); ?>
<?php $zahl=1234567890.123456789; echo number_format($zahl,0,",","."); ?>