From e5ecd7dee64ed9079bbb88e56240dd500b7a22bc Mon Sep 17 00:00:00 2001 From: Gary Date: Mon, 9 Mar 2026 12:03:30 +0000 Subject: [PATCH] updated content --- class/database.php | 24 ++++++++++++++++++++++ contact.php | 41 +++++++++++++++++++++++++++++++++---- index.php | 47 ++----------------------------------------- sections/counter.php | 8 ++++---- sections/discount.php | 14 +++++++++++++ sections/welcome.php | 29 ++++++++++++++++++++++++++ 6 files changed, 110 insertions(+), 53 deletions(-) create mode 100644 class/database.php create mode 100644 sections/discount.php create mode 100644 sections/welcome.php diff --git a/class/database.php b/class/database.php new file mode 100644 index 0000000..ae5df5b --- /dev/null +++ b/class/database.php @@ -0,0 +1,24 @@ +conn = null; + + try { + $this->conn = new PDO("mysql:host=" . $this->host . ";dbname=" . $this->db_name, $this->username, $this->password, array(PDO::ATTR_PERSISTENT => true, PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8")); + } catch (PDOException $exception) { + echo "Connection error: " . $exception->getMessage(); + } + + return $this->conn; + } +} diff --git a/contact.php b/contact.php index ee1a055..e6bdb94 100644 --- a/contact.php +++ b/contact.php @@ -1,8 +1,41 @@ + + + +
+

+
+ $location, +); + +// Merge additional data with $_REQUEST +$request_data = array_merge($_REQUEST, $data); + +curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($request_data)); +echo "
"; +echo "


"; +echo curl_exec($ch); +echo "
"; +curl_close($ch); + +include_once $URLcorrection . "includes/footer.php"; + +?> \ No newline at end of file diff --git a/index.php b/index.php index d237e58..b352793 100644 --- a/index.php +++ b/index.php @@ -47,53 +47,10 @@ include_once 'includes/hero.php'; -
-
-
-
-
-
-
-
-
-
- Welcome to North East Loft Boarding -

The Market Leaders in Loft Storage Solutions

-
-
-

Expertly boarding lofts in the North East with 15+ years experience.

-
-

As the premier specialists in the North East, we take pride in being the region's go-to experts. From Newcastle and Sunderland down to Durham and Teesside, our reputation is built on delivering exceptional results and honest, local service that national providers simply can’t match.

- -
-
-
-
-
-
- -
-
-
-
-
-
-

10% Discount

-

Get a 10% off all storage quotes today.

-

Request A Free Quote

-
-
-
-
-
-
-
+
-
+
diff --git a/sections/discount.php b/sections/discount.php new file mode 100644 index 0000000..bf5c09c --- /dev/null +++ b/sections/discount.php @@ -0,0 +1,14 @@ +
+
+
+
+
+
+

10% Discount

+

Get a 10% off all storage quotes today.

+

Request A Free Quote

+
+
+
+
+
\ No newline at end of file diff --git a/sections/welcome.php b/sections/welcome.php new file mode 100644 index 0000000..e8f0732 --- /dev/null +++ b/sections/welcome.php @@ -0,0 +1,29 @@ +
+
+
+
+
+
+
+
+
+
+ Welcome to North East Loft Boarding +

The Market Leaders in Loft Storage Solutions

+
+
+

Expertly boarding lofts in the North East with 15+ years experience.

+
+

As the premier specialists in the North East, we take pride in being the region's go-to experts. From Newcastle and Sunderland down to Durham and Teesside, our reputation is built on delivering exceptional results and honest, local service that national providers simply can’t match.

+ +
+
+
+
+
+
\ No newline at end of file