From 8f3cb64158e1d511be46458ee1949d2c8043d364 Mon Sep 17 00:00:00 2001 From: "AFTECH.RO" <38830718+aftechro@users.noreply.github.com> Date: Sun, 27 Mar 2022 23:28:15 +0100 Subject: [PATCH] Updated index.php small changes to UI --- portal/index.php | 118 +++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 100 insertions(+), 18 deletions(-) diff --git a/portal/index.php b/portal/index.php index 6a0603d2..8c7ede31 100644 --- a/portal/index.php +++ b/portal/index.php @@ -4,6 +4,10 @@ * Landing / Home page for the client portal */ + $row = mysqli_fetch_array($sql); + $contact_photo = $row['contact_photo']; + $contact_id = $row['contact_id']; + require_once("inc_portal.php"); // Ticket status from GET @@ -23,26 +27,70 @@ if (!isset($_GET['status'])) { } $contact_tickets = mysqli_query($mysqli, "SELECT * FROM tickets LEFT JOIN contacts ON ticket_contact_id = contact_id WHERE $ticket_status_snippet AND ticket_contact_id = '$session_contact_id' AND ticket_client_id = '$session_client_id' ORDER BY ticket_id DESC"); -?> -
|
+
+
+ + + + + + + + |
+
+
+
+
+
+Welcome, !++ |
+
|---|
| # | Subject | Status | $ticket[ticket_number] | "; echo "$ticket[ticket_subject] | "; echo "$ticket[ticket_status] | "; echo ""; } ?> -
|---|