From fb59d7812902fdd13a4a9668950f5d5ed76241f8 Mon Sep 17 00:00:00 2001 From: KANE LAZENI Date: Sat, 7 Feb 2026 23:42:16 +0000 Subject: [PATCH] a --- Controleur/ControleurRechercheparcarte.php | 36 ++++++++++++++++++++++ Vue/Rechercheparcarte/index.php | 8 +++++ 2 files changed, 44 insertions(+) create mode 100755 Controleur/ControleurRechercheparcarte.php create mode 100755 Vue/Rechercheparcarte/index.php 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