Navigation :

Home
Source code
Tutorials
RSS feeds
Articles
Wordpress plugins
Blog
Books
Software
Downloads
Hosting
manuals
Script directory
Training
Our Links




Site Sponsors :

Bookmark :

Links :

wwwstores
dvd information
dropshippers

Downloads :

Misc :

Webmaster Resources
Only PHP
ScriptSearch.com
Scripts.com - Get the best scripts NOW!
AndreaPHP Programming

Valid XHTML 1.0 Transitional


Valid CSS!


format a number example

formats a number to a certain amount of decimal places

This is how to format a number to x amount of decimal places, this is a particularly good example

<?php
$pi=3.1415926535897932384626433832795;
//6 decimal places
echo number_format($pi,6);
echo "<br>";
//3 decimal places
echo number_format($pi,3);
?>

 

Example

"; //3 decimal places echo number_format($pi,3); ?>