2011-01-01 18:06:45 +00:00
|
|
|
<?php
|
|
|
|
require_once("_head.php");
|
|
|
|
|
|
|
|
mkheader("classes!", '#8bb');
|
|
|
|
|
|
|
|
|
|
|
|
class html {
|
2011-01-01 18:40:24 +00:00
|
|
|
private $contents = "";
|
|
|
|
private $heading = "";
|
2011-01-01 18:06:45 +00:00
|
|
|
|
2011-01-01 18:40:24 +00:00
|
|
|
public function __construct($heading) {
|
|
|
|
$this->heading = $heading;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function addparagraph($message) {
|
|
|
|
$this->contents .= ("<p>" . $message . "</p>\n");
|
|
|
|
}
|
2011-01-01 18:06:45 +00:00
|
|
|
|
2011-01-01 18:40:24 +00:00
|
|
|
public function show() {
|
|
|
|
print "\n\n<h1>" . $this->heading . "</h1>\n";
|
|
|
|
print $this->contents;
|
2011-01-01 18:06:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<?php
|
|
|
|
|
2011-01-01 18:40:24 +00:00
|
|
|
$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();
|
2011-01-01 18:06:45 +00:00
|
|
|
|
|
|
|
?>
|
|
|
|
</body>
|
|
|
|
</html>
|