* @git WEBD-310-45 * @license GNU General Public License version 2 or later; see LICENSE.txt * * @week2 * In this script I have modified the nested if statement so it instead * uses a compound conditional expression. I used logical operators * such as || (or) and && (and) to execute a conditional or looping * statement based on multiple criteria. * */ ?> Gas Prices = 2 && $GasPrice <= 3) { echo "

Gas prices are between $2.00 and $3.00.

"; } else { echo "

Gas prices are not between $2.00 and $3.00

"; } ?>