Files
premier/Etudiant.php
2025-09-29 11:37:23 +02:00

14 lines
171 B
PHP

<?php
class Etudiant{
private $nom;
public function setNom($n){
$this->nom = $n;
}
public function getNom(){
return $this->nom;
}
}