Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Manual de PHP de WebEstilo.com -->
- <!-- Operadores Logicos -->
- <html>
- <head>
- <title>Ejemplo de PHP - Operadores Logicos</title>
- </head>
- <body>
- <?php
- $a = 8;
- $b = 3;
- $c = 3;
- echo ($a == $b) && ($c > $b),"<br>";
- echo ($a == $b) || ($b == $c),"<br>";
- echo !($b <= $c),"<br>";
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement