diff --git a/Controleur/ControleurRechercheparcarte.php b/Controleur/ControleurRechercheparcarte.php new file mode 100755 index 0000000..3c203b5 --- /dev/null +++ b/Controleur/ControleurRechercheparcarte.php @@ -0,0 +1,36 @@ +menuvue = new Menuvueutilisateur(); + $this->menuvue->getMenuVue("Rechercheparcarte"); + + $this->beneficiaire = new Beneficiaire(); + } + + public function index($donneesCarte="") + { + if (isset($_POST['donneesCarte'])) + { + $donneesCarte=trim($_POST['donneesCarte']); + + if($donneesCarte<=" ") + { + $this->rediriger("Rechercheparcarte"); + exit(); + } + else + { + // faire le traitement de la carte ici + } + } + + $this->genererVue(); + } +} \ No newline at end of file diff --git a/Vue/Rechercheparcarte/index.php b/Vue/Rechercheparcarte/index.php new file mode 100755 index 0000000..940f703 --- /dev/null +++ b/Vue/Rechercheparcarte/index.php @@ -0,0 +1,8 @@ +titre = "INTER-SANTE - "._("Recherche du patient par carte") ; +?> + +
\ No newline at end of file