addNav("Home", "./"); $this->addNav("About Me", "aboutme.php"); $this->addNav("Experience", "experience.php"); $this->addNav("Game", "game.php"); } public function head(){ $html = <<
CONTENT COMING SOON!
HTML; return $html; } public function addNav($name, $link){ $this->links[] = array("name" => $name, "link" => $link); } public function footer(){ $html = << HTML; return $html; } public function setTitle($title){ $this->title = $title; } private $links = array(); private $title = "Not Set!"; }