13 lines
371 B
PHP
13 lines
371 B
PHP
<?php
|
|
|
|
require_once "Etudiant.php";
|
|
|
|
Class EtudiantBachelor extends Etudiant{
|
|
private $tempsEveil = 15;
|
|
|
|
public function afficherHtml(){
|
|
echo "<br>Etudiant2 :<br>". "Nom : ".$this->getNom()."<br>"
|
|
."Prenom : ".$this->getPrenom()."<br>"."Age : "
|
|
.$this->getAge()."<br>"."Eveil : ;".$this->tempsEveil;
|
|
}
|
|
} |