name = $name; $this->value = $value; } function getHtml() { if ($this->id=="") $this->id = $this->name; $html = "\n\tname\" id=\"$this->id\""; if (!$this->isEnabled()) { $html .= " disabled=\"true\""; } $html .= " value=\"$this->value\""; if ($this->on_click) { $html .= " onclick=\"".$this->on_click."\""; } $html .= ">"; return $html; } }