Jump to content

PHP Rounding Up Issue


kool_samule

Recommended Posts

Hi Chaps,

 

I have an SQL query that calculates a word count multiplied by a fixed figure:

 

...$pricegross = ($row_rsInvPending['projanalysis_total']*$row_rsInvPending['costbase']);...

 

Then use a bit of php code to round up the figure to 2 decimal places....

 

<?php echo number_format($pricegross, 2, '.', ''); ?>

 

I then total up $pricegross for all records:

 

.....SELECT SUM(projanalysis_total) as total_pricegross...

 

If I have two records:

($pricegross) 1. £2.295

($pricegross) 2. £2.295

There are both displayed as £2.30, which is what I want

 

Then the total ($total_pricegross) shows up as £4.59, but what I want is: £4.60

 

Is this possible?....Hope this is clear?!

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.