name = $name; $this->text = get_POST_var($name); // hmmmm I wonder if we have to sanitise? } function get() { return $this->text; } function input($type, $name, $value = '') { return ""; } function toTable(&$lines, $tab = ' ') { $lines[] = "$tab
"; $this->to3TD($lines, $tab . ' '); $lines[] = "$tab
"; } function to3TD(&$lines, $tab = ' ') { $lines[] = "$tab " . "Term:" . " "; $lines[] = "$tab " . $this->input('text', $this->name, $this->get()) . " "; $lines[] = "$tab " . ""; " "; } } ?>