Premier commit

This commit is contained in:
Logshiro
2025-09-29 13:11:49 +02:00
commit 59d0786bc3
4 changed files with 90 additions and 0 deletions

13
EtudiantBachelor.php Normal file
View File

@@ -0,0 +1,13 @@
<?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;
}
}