Skip to content

Instantly share code, notes, and snippets.

@John-Henrique
Created April 15, 2021 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save John-Henrique/38db07218a1ed3777df8042e789673ff to your computer and use it in GitHub Desktop.
Save John-Henrique/38db07218a1ed3777df8042e789673ff to your computer and use it in GitHub Desktop.
IVA example
<?php
$tax = array();
$amount = 100;
$tax['iva'] = 14;
$total = $amount * ( $tax['iva'] / 100 )
echo $total;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment