Advertisement
idsystems

PHP_Leccion1.6_03

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