tooted=explode(",", file_get_contents("tooted1.txt"));
}
function teave(){
return "Ostuandmete klass";
}
function toodeteLoetelu(){
$t="
";
foreach($this->tooted as $toode){
$t.="- ".htmlspecialchars($toode)."
\n";
}
$t.="
";
return $t;
}
}
$korv=new Ostukorv();
echo $korv->toodeteLoetelu();