Wow... I am baffled.
I have a shopping cart script that works perfectly until I add in the following 3 lines of calculations
What happens when that is added is that it stops the processing at that point altogether, and doesn't display the balance of the page, and yet when I check the syntax in php, there are no issues.
Any fresh eyes that can point me in the right direction for a resolution?
$cart_tax=round(($cart_points * 6 / 100),0);
$cart_ship=round(($cart_points * 8 / 100),0)+225;
$cart_total=$cart_points + $cart_tax + $cart_ship;
I'm not sure if there is something staring at me that I'm missing or what, but I've been trying for hours with every variation of these variables to get it to work with no nuluck