Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <?php for ($x = 0; $x <= 10; $x++) { if ($x == 3) break; echo "The number is: $x <br>"; } ?> </body> </html>
The number is: 0
The number is: 1
The number is: 2