PHP – VAT fucntions add / remove

Posted on January 26, 2021 by jamie

function vat_add($price, $vat)
{
    $nett = $price;
    $gross = $nett * ($vat / 100) + $nett;
    return $gross;
}

function vat_remove($price, $vat)
{
    $gross = $price;
    $nett = $gross-($gross * ($vat / 100));
    return $nett;
}