EvilZone
		Programming and Scripting => Web Oriented Coding => : Octavius  November 15, 2015, 11:35:03 PM
		
			
			- 
				
 <?php
    $test = "evilzone";
    
    switch ($test) {
        case 'notice me senpai':
            echo "notice me";
            break;
    }
    
    ?>
so I keep trying to submit but i keep receiving a error saying that I have not added the default case? can anyone help and point out the error
Update:
I figured it out xD , so simple but caused me some delay 
 <?php
    $test = "evilzone";
    
    switch ($test) {
        case 'notice me senpai':
            default:
            echo "notice me";
            break;
    }
    
    ?>
			 
			
			- 
				If you are doing a Switch...case, why in the hell do you have only the default case, it is supposed to be the last resort when all fails, i need to sees some othe cases bro.