<!DOCTYPE html>
<html>
<body>
<?php
$i = 0;
while ($i < 6) {
$i++;
if ($i == 3) continue;
echo $i;
}
?>
</body>
</html>