Quotes help make search much faster. Example: "Practice Makes Perfect"

Thursday, April 18, 2013

Codecademy Sample Solution: Switch Syntax



<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
    <?php
    $fruit = "Apple";
   
    switch ($fruit) {
        case 'Apple':
            echo "Yummy.";
            break;
        default:
            echo "Mmm. Tasty.";
    }
   
    ?>
    </body>
</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts