Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Manual de PHP de WebEstilo.com -->
- <!-- Ejemplo de Condicionales IF -->
- <html>
- <head>
- <title>Ejemplo de PHP - Condicional IF</title>
- </head>
- <body>
- <?php
- $a = 8;
- $b = 3;
- if ($a < $b)
- {
- echo "a es menor que b";
- }
- else
- {
- echo "a no es menor que b";
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement