On Thu, Sep 25, 2003 at 10:01:48PM +0200, Ryan A wrote:
: 
: I am running a query on the database to get the avg of a few fields, I am
: getting a result something like this:
: 
: 5.0000
: 4.0000
: 5.0000
: 
: I dont want to use such big averages and want to cut the last to digits off
: so it will be something like:
: 5.00
: 4.00
: 44.23
: etc

Why not keep the precision internally and only deal with it as an output
formatting issue when you display the results?

        $a = 5.0000;
        printf("\$a = %.2f \n", $a);

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to