local = new Tablocalite(); } public function index() { $tabpays = $this->local->getpayslocalite(); $tabville = array(); $this->genererVueAjax(array( 'pays' => $tabpays, 'ville' => $tabville )); } public function ajouter(){ $libelle = strtoupper($this->requete->getParametreFormulaire("libelle")); $codePays = strtoupper($this->requete->getParametreFormulaire("codePays")); $codeVille = strtoupper($this->requete->getParametreFormulaire("codeVille")); $this->local->ajouterlocalite($codePays,$codeVille,$libelle); } }