From 415a6f5290de96aa21a21452a09f329b8fc81e96 Mon Sep 17 00:00:00 2001 From: Oswaldo Aldair Alanis Mayorga Date: Mon, 17 Jun 2019 16:15:14 +0200 Subject: [PATCH] Add new file --- application/insertClient.php | 58 ++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 application/insertClient.php diff --git a/application/insertClient.php b/application/insertClient.php new file mode 100644 index 0000000..2f5c552 --- /dev/null +++ b/application/insertClient.php @@ -0,0 +1,58 @@ +prepare($query); + $vSt->execute(); + + $query = "SELECT * FROM client"; + $vSt = $vConn->prepare($query); + $vSt->execute(); + + while ($vResult = $vSt->fetch(PDO::FETCH_ASSOC)) { + echo ''; + echo "$vResult[__________]"; + echo "$vResult[__________]"; + echo "$vResult[__________]"; + echo ''; + } + + echo "Insertion Correct"; + } + } + } + } + + + +?> + + + + Insert Client + + + +
id Nom Prenom Date Adresse Numero
+ + + \ No newline at end of file -- GitLab