From 1b5fa4e89b6013584ef1f636c1ce5e14ec827836 Mon Sep 17 00:00:00 2001 From: Saumit Dinesan Date: Tue, 3 Oct 2023 01:23:48 +0530 Subject: Lab04: HTML Form Validation- adding .env and README --- Lab04/insert.php | 19 +++++++++++++------ 1 file changed, 13 insertions(+), 6 deletions(-) (limited to 'Lab04/insert.php') diff --git a/Lab04/insert.php b/Lab04/insert.php index 717842e..2172473 100644 --- a/Lab04/insert.php +++ b/Lab04/insert.php @@ -8,11 +8,18 @@
load(); + + $servername = getenv('DB_SERVER'); + $username = getenv('DB_USERNAME'); + $password = getenv('DB_PASSWORD'); + $dbname = getenv('DB_NAME'); + $tablename = getenv('DB_TABLE'); // Create connection $conn = mysqli_connect($servername, $username, $password, $dbname); @@ -51,4 +58,4 @@
- \ No newline at end of file + -- cgit v1.2.3