bureau = new Tabbureau(); } public function index() { $this->genererVueAjax(); } public function ajouter(){ $libelle = strtoupper($this->requete->getParametreFormulaire("libelle")); $nomRespon = strtoupper($this->requete->getParametreFormulaire("nomRespon")); $prenomRespon = strtoupper($this->requete->getParametreFormulaire("prenomRespon")); $telephoneFixe = $this->requete->getParametreFormulaire("telephoneFixe"); $telephonePortable = $this->requete->getParametreFormulaire("telephonePortable"); $email = $this->requete->getParametreFormulaire("email"); $this->bureau->ajouterbureau($libelle,$nomRespon,$prenomRespon,$telephoneFixe,$telephonePortable,$email); } }