Advertisement
ujiajah1

Switch

Aug 17th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title></title>
  5.     </head>
  6.     <body>
  7.     <?php
  8.     switch (2) {
  9.         case 0:
  10.             echo 'The value is 0';
  11.             break;
  12.         case 1:
  13.             echo 'The value is 1';
  14.             break;
  15.         case 2:
  16.             echo 'The value is 2';
  17.             break;
  18.         default:
  19.             echo "The value isn't 0, 1 or 2";
  20.     }
  21.     ?>
  22.     </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement