name = $name; $this->value = $value; } function getHtml() { if ($this->id=="") $this->id = $this->name; $html = "\n\tname\" id=\"$this->id\""; $html .= " value=\"".$this->getValue()."\""; $html .= ">"; return $html; } }