0
Fill in the blanks.
_____Singer { public $name = "Ann"; public function display() { echo _____->name; } } $s = ____Singer(); $s___display();
2 Answers
+ 1
class Singer {
public $name = "Ann";
public function display() {
echo this->name;
}
}
$s = new Singer();
$s->display();
0
Go through the module again I am 100% sure you will get this :)