My PHP Compound Op

";echo (3 + 4) * 5 // 35echo "
"; //Three ways to increment a counter variable// (1) The standard assignment operator$count = 1;$count = $count + 1; echo $count; // 2 echo "
"; ?>

Go to Next Page