Run ❯
Get your
own PHP
server
Result Size:
625 x 565
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <body> <h1>The || Operator</h1> <p>Write a message if at least one of the conditions are true.</p> <?php $x = 100; $y = 50; if ($x == 100 || $y == 80) { echo "Hello world!"; } ?> </body> </html>
The || Operator
Write a message if at least one of the conditions are true.
Hello world!