Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <?php $i = 0; while ($i < 6) { $i++; if ($i == 3) continue; echo $i; } ?> </body> </html>
12456