<?php
//SimpleCritter.php
//meant to be included
class Critter{
public $name;
public function __construct($name = "Anonymous"){
$this->name = $name;
} // end constructor
public function sayHi(){
return "Hi. My name is $this->name.";
} // end sayHi method
} // end critter def
?>