Created
August 15, 2014 15:14
-
-
Save JacobHsu/e856633dcacd2609b553 to your computer and use it in GitHub Desktop.
#PHP
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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 function __construct(){ | |
$this->name = $name; | |
} | |
public meow(){ | |
return "Meow Meow"; | |
} | |
$name = new cat("CodeCat"); | |
echo $name->meow(); | |
} | |
?> | |
</p> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment