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

Thursday, April 18, 2013

Codecademy Sample Solution: Glance at the Past!



<!DOCTYPE html>
<html>
    <head>
<title></title>
</head>
<body>
    <?php
        $var = 1;
        if($var < 1){
            echo "Variable is less than 1.";
        }
        elseif($var > 1){
            echo "Variable is greater than 1.";
        }
        else{
            echo "Variable is less than 1.";
        }
    ?>
    </body>
</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts