Advertisement
idsystems

PHP_Leccion1.6_02

Jan 19th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.40 KB | None | 0 0
  1. <!-- Manual de PHP de WebEstilo.com -->
  2. <!-- Operadores de Comparacion -->
  3. <html>
  4. <head>
  5.    <title>Ejemplo de PHP - Operadores Comparacion</title>
  6. </head>
  7. <body>
  8. <?php
  9.    $a = 8;
  10.    $b = 3;
  11.    $c = 3;
  12.    echo $a == $b,"<br>";
  13.    echo $a != $b,"<br>";
  14.    echo $a < $b,"<br>";
  15.    echo $a > $b,"<br>";
  16.    echo $a >= $c,"<br>";
  17.    echo $b <= $c,"<br>";
  18. ?>
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement