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

Saturday, April 27, 2013

Codecademy Sample Solution: Challenge Time



<!DOCTYPE html>
<html>
    <head>
 <title> Challenge Time! </title>
      <link type='text/css' rel='stylesheet' href='style.css'/>
</head>
<body>
      <p>
        <?php
          // Your code here
            class Cat{
                public $isAlive = true;
                public $numLegs = 4;
                public $name;
               
                public function __construct($name){
                    $this->name = $name;
                }
               
                public function meow(){
                    return "Meow meow";
                }
            }
           
            $cat1 = new Cat('CodeCat');
            echo $cat1->meow();
        ?>
      </p>
    </body>
</html>

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts