ZIMRA Total Amount Payable Calculator
Calculation Results
“;
echo “
CIF Value: $” . number_format($cif_value, 2) . “
“;
echo “
Value for Duty Purposes (VDP): $” . number_format($vdp, 2) . “
“;
echo “
Duty: $” . number_format($duty, 2) . “
“;
echo “
Value for Tax Purposes (VTP): $” . number_format($vtp, 2) . “
“;
echo “
VAT (15%): $” . number_format($vat, 2) . “
“;
echo “
Total Amount Payable to ZIMRA: $” . number_format($total_amount, 2) . “
“;
}
?>