summaryrefslogtreecommitdiff
path: root/automated/linux/lamp/html
diff options
context:
space:
mode:
Diffstat (limited to 'automated/linux/lamp/html')
-rw-r--r--automated/linux/lamp/html/add-record.php2
-rw-r--r--automated/linux/lamp/html/connect-db.php2
-rw-r--r--automated/linux/lamp/html/create-db.php2
-rw-r--r--automated/linux/lamp/html/create-table.php2
-rw-r--r--automated/linux/lamp/html/delete-record.php2
-rw-r--r--automated/linux/lamp/html/select-record.php2
6 files changed, 6 insertions, 6 deletions
diff --git a/automated/linux/lamp/html/add-record.php b/automated/linux/lamp/html/add-record.php
index f721677..f7802ae 100644
--- a/automated/linux/lamp/html/add-record.php
+++ b/automated/linux/lamp/html/add-record.php
@@ -1,7 +1,7 @@
<?php
$servername = "localhost";
$username = "root";
-$password = "lamptest";
+$password = "lxmptest";
$dbname = "myDB";
// Create connection
diff --git a/automated/linux/lamp/html/connect-db.php b/automated/linux/lamp/html/connect-db.php
index ee42caf..c43dff7 100644
--- a/automated/linux/lamp/html/connect-db.php
+++ b/automated/linux/lamp/html/connect-db.php
@@ -1,7 +1,7 @@
<?php
$servername = "localhost";
$username = "root";
-$password = "lamptest";
+$password = "lxmptest";
// Create connection
$conn = new mysqli($servername, $username, $password);
diff --git a/automated/linux/lamp/html/create-db.php b/automated/linux/lamp/html/create-db.php
index 63c166b..1373709 100644
--- a/automated/linux/lamp/html/create-db.php
+++ b/automated/linux/lamp/html/create-db.php
@@ -1,7 +1,7 @@
<?php
$servername = "localhost";
$username = "root";
-$password = "lamptest";
+$password = "lxmptest";
// Create connection
$conn = new mysqli($servername, $username, $password);
diff --git a/automated/linux/lamp/html/create-table.php b/automated/linux/lamp/html/create-table.php
index 740676a..04eb56e 100644
--- a/automated/linux/lamp/html/create-table.php
+++ b/automated/linux/lamp/html/create-table.php
@@ -1,7 +1,7 @@
<?php
$servername = "localhost";
$username = "root";
-$password = "lamptest";
+$password = "lxmptest";
$dbname = "myDB";
// Create connection
diff --git a/automated/linux/lamp/html/delete-record.php b/automated/linux/lamp/html/delete-record.php
index 8939c45..3556256 100644
--- a/automated/linux/lamp/html/delete-record.php
+++ b/automated/linux/lamp/html/delete-record.php
@@ -1,7 +1,7 @@
<?php
$servername = "localhost";
$username = "root";
-$password = "lamptest";
+$password = "lxmptest";
$dbname = "myDB";
// Create connection
diff --git a/automated/linux/lamp/html/select-record.php b/automated/linux/lamp/html/select-record.php
index 45505f3..62a4460 100644
--- a/automated/linux/lamp/html/select-record.php
+++ b/automated/linux/lamp/html/select-record.php
@@ -1,7 +1,7 @@
<?php
$servername = "localhost";
$username = "root";
-$password = "lamptest";
+$password = "lxmptest";
$dbname = "myDB";
// Create connection