LPMJ Example 4-20 (Click on the icon to view the source for copy and pasting)
<?php
if ($bank_balance < 100)
{
	$money += 1000;
	$bank_balance += $money;
}
else
{
	$savings += 50;
	$bank_balance -= 50;
}
?>