What are you trying to do? A switch statement should look like this:
switch($variable)
{
case "hello":
print "hello and welcome";
break;
case "goodbye"
print "goodbye, come back soon";
break;
default:
print "whatever";
break;
}
I think the default statment should come last.