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