Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!-- Manual de PHP de WebEstilo.com -->
- <!-- Ejemplo de Condicional Multiple Switch -->
- <html>
- <head>
- <title>Ejemplo de PHP. Condicional Switch</title>
- </head>
- <body>
- <?php
- $posicion = "arriba";
- switch($posicion) {
- case "arriba": // Bloque 1
- echo "La variable contiene";
- echo " el valor arriba";
- break;
- case "abajo": // Bloque 2
- echo "La variable contiene";
- echo " el valor abajo";
- break;
- default: // Bloque 3
- echo "La variable contiene otro valor";
- echo " distinto de arriba y abajo";
- }
- ?>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement