esimene=$a1;
$this->teine=$a2;
$this->id=$eristaja;
$this->loeVormist();
}
public function leiaSumma(){
return $this->esimene+$this->teine;
}
public function vormiHTML(){
return " +
".$this->leiaSumma();
}
public function loeVormist(){
if(isSet($_REQUEST[$this->id."_t1"])){
$this->esimene=intval($_REQUEST[$this->id."_t1"]);
$this->teine=intval($_REQUEST[$this->id."_t2"]);
}
}
}