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