Advertisement
idsystems

PHP_Leccion1.7_01

Jan 19th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. <!-- Manual de PHP de WebEstilo.com -->
  2. <!-- Ejemplo de Condicionales IF -->
  3. <html>
  4. <head>
  5.    <title>Ejemplo de PHP - Condicional IF</title>
  6. </head>
  7. <body>
  8. <?php
  9.    $a = 8;
  10.    $b = 3;
  11.    if ($a < $b)
  12.    {
  13.       echo "a es menor que b";
  14.    }
  15.    else
  16.    {
  17.       echo "a no es menor que b";
  18.    }
  19. ?>
  20. </body>
  21. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement