You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1014 B

14 years ago
<?php
require_once("_head.php");
mkheader("classes!", '#8bb');
class html {
private $contents = "";
private $heading = "";
14 years ago
public function __construct($heading) {
$this->heading = $heading;
}
public function addparagraph($message) {
$this->contents .= ("<p>" . $message . "</p>\n");
}
14 years ago
public function show() {
print "\n\n<h1>" . $this->heading . "</h1>\n";
print $this->contents;
14 years ago
}
}
?>
<body>
<?php
$elvis = new html("Elvis ist rad");
$goth = new html("Goth Poetry ist rad");
$elvis->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<p style='border-bottom:3px solid #222;'></p>\n");
$goth->show();
14 years ago
?>
</body>
</html>