Files
Quentin_premier/EtudiantBachelor.php

13 lines
371 B
PHP
Raw Normal View History

2025-09-29 13:11:49 +02:00
<?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;
}
}