From 5e7ae002ae3d9aaa5ecc6eb24f7136f0c4f1a4bf Mon Sep 17 00:00:00 2001 From: "CHIEFSOFT\\ameye" Date: Wed, 17 Jul 2024 15:03:45 -0400 Subject: [PATCH] fix bvn --- app/Controllers/DigiFiBVN.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/Controllers/DigiFiBVN.php b/app/Controllers/DigiFiBVN.php index 6340e20..ffe3dbb 100644 --- a/app/Controllers/DigiFiBVN.php +++ b/app/Controllers/DigiFiBVN.php @@ -62,6 +62,11 @@ class DigiFiBVN extends BaseController ]; $customer = $this->insert_db('customers',$udata); + /** --- */ + $sqlM = "SELECT * FROM customers WHERE bvn = '".$data['bvn']."' "; + $qu0 = $this->db->query($sqlM); + $customer = $qu0->getResultArray(); + } }