// Method definition class Artist { // ... public function outputAsTable() { $table = ""; $table .= ""; $table .= ""; $table .= ""; $table .= ""; $table .= ""; $table .= "
"; $table .= $this->firstName . " " . $this->lastName; $table .= "
Birth:" . $this->birthDate; $table .= "(" . $this->birthCity . ")
Death:" . $this->deathDate . "
"; return $table; } }