Get your own PHP server Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<?php
for($i = 1; $i <= 10; $i++) {
  if($i == 5) {
    continue;
  }
echo "$i <br>";
}
?>
</body>
</html>
1
2
3
4
6
7
8
9
10