switch case
switch(expression)
{
case x:
// code block
break;
case y:
// code block
break;
default:
// code block
break;
}
switch case
switch(expression)
{
case x:
// code block
break;
case y:
// code block
break;
default:
// code block
break;
}
switch case
<?php
$i=250;
Switch($i)
{
Case 150:
echo "Value is 150";
Break;
Case 250:
echo "Value is 250";
Break;
Case 350:
echo "Value is 350";
Break;
Case 450:
echo "Value is 450";
Break;
Default:
echo "Enter Correct Value";
Break;
}
?>
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us