<!DOCTYPE html>
<html>
<body>
<?php
for($i = 1; $i <= 10; $i++) {
if($i == 5) {
continue;
}
echo "$i <br>";
?>
</body>
</html>