From 68858da5d6166be880f1301f49807a2e52357288 Mon Sep 17 00:00:00 2001 From: arf20 Date: Wed, 20 Mar 2024 16:04:19 +0100 Subject: Add 'setting up' order status --- client.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'client.php') diff --git a/client.php b/client.php index 43dd78b..dbab9e8 100644 --- a/client.php +++ b/client.php @@ -14,7 +14,7 @@ $type = $_SESSION["type"]; require_once "config.php"; // Get orders -$sql = "SELECT id, service, name, billing, comments FROM orders WHERE client = ?"; +$sql = "SELECT id, service, name, billing, comments, status FROM orders WHERE client = ?"; $stmt = mysqli_prepare($link, $sql); mysqli_stmt_bind_param($stmt, "s", $param_client); $param_client = $clientid; @@ -59,12 +59,12 @@ function getservicebyid($id) {

panel

-

Active services

+

Orders

- + \n"; + echo "\n"; } ?>
serviceinstancebillingcomments
serviceinstancebillingcommentsstatus
".getservicebyid($order["service"])["name"]."".$order["name"]."".$order["billing"]."
".$order["comments"]."
".getservicebyid($order["service"])["name"]."".$order["name"]."".$order["billing"]."
".$order["comments"]."
".$order["status"]."
-- cgit v1.2.3