Code testing and other tests to see if we want to move from
phpBB to
UseBB.
"Sam the lion" wrote
It looks like the editor controls do not work right in Opera. Color and Size don't offer a selection they simply wrap the text in color=red and size=14 by default.
<?php
class Hello {
public $string = 'Hello ';
public $name = null;
public function __construct($name = null) {
$this->name = $name;
}
public function render($echo = false) {
$out = $this->hello . $this->name;
if ($echo) {
echo $out;
} else {
return $out;
}
}
}
?>