Advertisement
idsystems

PHP_Leccion1.7_02

Jan 19th, 2012
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.63 KB | None | 0 0
  1. <!-- Manual de PHP de WebEstilo.com -->
  2. <!-- Ejemplo de Condicional Multiple Switch -->
  3. <html>
  4. <head>
  5.    <title>Ejemplo de PHP. Condicional Switch</title>
  6. </head>
  7. <body>
  8. <?php
  9.    $posicion = "arriba";
  10.    
  11.    switch($posicion) {
  12.       case "arriba":   // Bloque 1
  13.          echo "La variable contiene";
  14.          echo " el valor arriba";
  15.          break;
  16.       case "abajo":   // Bloque 2
  17.          echo "La variable contiene";
  18.          echo " el valor abajo";
  19.          break;
  20.       default:   // Bloque 3
  21.          echo "La variable contiene otro valor";
  22.          echo " distinto de arriba y abajo";
  23.    }
  24. ?>
  25. </body>
  26. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement