Skip to content

Instantly share code, notes, and snippets.

@jameserie
Created May 24, 2011 15:49
Show Gist options
  • Save jameserie/988960 to your computer and use it in GitHub Desktop.
Save jameserie/988960 to your computer and use it in GitHub Desktop.
Calculate VAT using PHP
function getvat($price){
$vat = 21; // set vat amount
return $price * ($vat / 100);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment