class/oop stuff

cat-town
Dan Buch 14 years ago
parent c41a44ad13
commit f90e4222b6

@ -0,0 +1,27 @@
<?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>
Loading…
Cancel
Save