Jump to content

Recommended Posts

I have a CMS and it has a Commerce section, what I need it to do is calculate what the product price is, including VAT.

 

I have written the function that does this, however the problem Im having is its outputting the wrong (in terms of decimal places).

 

here is the function:


//Price + VAT
function getPriceVAT($price)
{

$vatValue = 20;

$vat = $price / 100 * $vatValue;

//Therefore price including VAT =

$priceIncVAT = $price + $vat;

return $priceIncVAT;

}

 

here is how im outputting it:

echo '<td>£'.getPriceVAT($getFig["product_price"]).'</td>';

 

It calculates it correctly but to only 1dp. which outputs: £2.4 instead of: £2.40 how can i correct this?

Link to comment
https://forums.phpfreaks.com/topic/269437-product-prices-vat/
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.