<?php
for ($count=0; $count <= 10; $count++) {
if ($count % 2 != 0) {
continue; //Tells PHP to skip back to the top when $count equals the number you specify and ignore the "echo $count" statement below it.
//This loop will ignore numbers with a remainder not equal to zero and echo even numbers between 0 and 10.
}
echo $count . ".
";
}
?>