Files
premier/Etudiant.php

14 lines
171 B
PHP
Raw Normal View History

2025-09-29 11:34:09 +02:00
<?php
class Etudiant{
private $nom;
public function setNom($n){
$this->nom = $n;
}
2025-09-29 11:37:23 +02:00
public function getNom(){
return $this->nom;
}
2025-09-29 11:34:09 +02:00
}