ville = new Tabville(); } public function index() { $tabpays = $this->ville->getpaysville(); $this->genererVueAjax(array( 'pays' => $tabpays )); } public function ajouter(){ $codeVille = strtoupper($this->requete->getParametreFormulaire("codeVille")); if (!$this->ville->existeligne($codeVille)){ $libelle = strtoupper($this->requete->getParametreFormulaire("libelle")); $codePays = $this->requete->getParametreFormulaire("codePays"); $this->ville->ajouterville($codePays,$codeVille,$libelle); }else{ echo 'Erreur: Le code saisi existe déjà! Veuillez entrer un autre./Error : The code entered already exists! Please enter another.'; die(); } } }