box-o-sand/docroot/html/classes.php

28 lines
329 B
PHP
Raw Normal View History

2011-01-01 18:06:45 +00:00
<?php
require_once("_head.php");
mkheader("classes!", '#8bb');
class html {
public $br = "<br />";
public function printline($message) {
printf("%s%s\n", $message, $this->br);
}
}
?>
<body>
<?php
$page = new html();
$page->printline("This is some text, eh?");
?>
</body>
</html>