<?php // This line explains the calculation below $price = 100; $tax = $price * 0.18; # hash-style comment for the tax rate echo $tax; ?>
Click Run to execute this code.