heading = $heading; } public function addparagraph($message) { $this->contents .= ("

" . $message . "

\n"); } public function show() { print "\n\n

" . $this->heading . "

\n"; print $this->contents; } } ?> addparagraph("Welcome to my Elvis Fan Page! Uh-huh, uh-huh, uh-huh."); $elvis->addparagraph("Do you love Elvis? Yes! Yes you do!"); $goth->addparagraph("Enter thee into the Goth Poetry Labyrinth of Spooooky Dooooom..."); $goth->addparagraph("Many terribly terrifying poems await thee."); $elvis->show(); printf("\n

\n"); $goth->show(); ?>