Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?php
  2. $huruf = "d";
  3. switch($huruf){
  4. case 'a':
  5. echo 'ini huruf a';
  6. break;
  7. case 'b':
  8. echo 'ini huruf b';
  9. break;
  10. case 'c':
  11. echo 'ini huruf c';
  12. break;
  13. default:
  14. echo 'ini huruf '.$huruf;
  15. break;
  16. }
  17. ?>