nom = $Nom;
$this->prenom = $Prenom;
$this->age = $Age;
}
public function getNom() {
return $this->nom;
}
public function setNom($Nom) {
$this->nom = $Nom;
}
public function getPrenom() {
return $this->prenom;
}
public function setPrenom($Prenom) {
$this->prenom = $Prenom;
}
public function getAge() {
return $this->age;
}
public function setAge($Age) {
$this->age = $Age;
}
public function getEtudiant() {
"
";
echo"infos étudiant : "."
";
echo"prenom étudiant : ".$this->getPrenom()."
";
echo"nom étudiant : ".$this->getNom()."
";
echo"age étudiant : ".$this->getAge()."
";
}
}