Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- http://phpmysql-academy.blogspot.in/
- Example: 1
- <?php
- $name = "Alex";
- switch ($name)
- {
- case "Alex":
- echo "You have blue eyes.";
- break;
- case "Billy":
- echo "You have brown eyes.";
- break;
- default:
- echo "I don't know what colour you eyes are.";
- }
- ?>
- Example: 2
- <?php
- $name = "Billy";
- switch ($name)
- {
- case "Alex":
- echo "You have blue eyes.";
- break;
- case "Billy":
- echo "You have brown eyes.";
- break;
- default:
- echo "I don't know what colour you eyes are.";
- }
- ?>
- Example: 3
- <?php
- $name = "Kyle";
- switch ($name)
- {
- case "Alex":
- echo "You have blue eyes.";
- break;
- case "Billy":
- echo "You have brown eyes.";
- break;
- default:
- echo "I don't know what colour you eyes are.";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment