diff --git a/_website/cart.php b/_website/cart.php index 5e4c5c9a..e7acf3df 100644 --- a/_website/cart.php +++ b/_website/cart.php @@ -4,7 +4,7 @@ ini_set('display_startup_errors', 1); error_reporting(E_ALL); global $db, $view, $settings; -include "panel/_db.php"; +include "db.php"; $user_id=$_SESSION['user_id'] ?? 0; diff --git a/_website/order.php b/_website/order.php index 9b132731..1b9e39ab 100644 --- a/_website/order.php +++ b/_website/order.php @@ -11,7 +11,7 @@ In our website, we are setting "post" pages with a "Tag". The first tag in our p There are other methods that might be better to get the info. But all we need is the "service_ID" in the "ogp_billing_services" table This method means we can use one code block in every game page and fill in the data dynamically. */ -include "panel/_db.php"; +include "db.php"; if (isset($_POST['save']) AND !empty($_POST['description']))