<?php$opt = "1";switch ($opt){case 1: print "Hello ";case 2: print "Interview ";default: print "Mania ";}?>
As break is not provided it executes all the cases.
Previous Question Next Question
Your comments will be displayed only after manual approval.