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 $x = 0; while($x < 10) { if ($x == 4) { pause; } echo "The number is: $x <br>"; $x++; } ?> </body> </html>
The number is: 0
The number is: 1
The number is: 2
Le nombre est : 3