Find Largest number among 3 numbers using switch case in php
<?php$a= 11;$b=2;$c=20;// Swich allows expression switch($a>$b AND $b>$c){caseTRUE:echo"$a is bigger";break;caseFALSE:switch($b>$c){caseTRUE:echo"$b is bigger";break;caseFALSE:echo"$b is bigger";break;}}?>