<html>
<body>
<h2>Why did this not output "anticipation of spring time"? </h2>

<?php
        $month = 'march';

        print "<b>$month</b>";

        switch($month)
        {
            case 'January': 
            case 'February': 
                print(", you must like winter skiing");
                break;
            case 'March': 
                print(", anticipation of spring time");
                break;
            case 'April': 
            case 'May': 
                print(", Ah! spring!! the flowers are blooming");
                break;
            case 'June': 
            case 'July': 
            case 'August': 
                print(", the sizzling days of summer");
                break;
            case 'September': 
            case 'October': 
                print(", is it fall or autumn?");
                break;
            case 'November': 
            case 'December': 
                print(", Ah! the holiday times");
                break;
            default: 
                print(", I do not recognize this month");
        }    
?>

<?php include "zCode/include.php"; ?>              <!-- hyperlink to see the code -->
</body>
</html>