List of PHP math functoins: http://www.php.net/manual/en/ref.math.php
abs($value)
ceil($value)
floor($value)
max($n1, $n2[, $n3] ...)
min($n1, $n2[, $n3] ...)
pi()
pow($base, $exp)
round($value[, $precision])
sqrt($value)
<?php $subtotal = 15.99; $tax_rate = 0.08; $tax = round($subtotal * $tax_rate, 2); // 1.28 ?>
<?php $num1 = 4; $root = sqrt($num1); // 2 ?>
<?php $num2 = 5; $power = pow($num2, 2); // 25 ?>