Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Created August 15, 2014 15:14
Show Gist options
  • Save JacobHsu/e856633dcacd2609b553 to your computer and use it in GitHub Desktop.
Save JacobHsu/e856633dcacd2609b553 to your computer and use it in GitHub Desktop.
#PHP
<!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