You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
L30 = $all_tickets = mysqli_query($mysqli, "SELECT * FROM tickets LEFT JOIN contacts ON ticket_contact_id = contact_id WHERE $ticket_status_snippet AND ticket_client_id = '$session_client_id' ORDER BY ticket_id DESC");
For efficiency, this should only request the fields required to show the ticket number, subject, contact and status. We should also consider pagination if possible?
--
2023-02-01 - Created draft
2024-04-07 - Promoted to issue
The text was updated successfully, but these errors were encountered:
L30 =
$all_tickets = mysqli_query($mysqli, "SELECT * FROM tickets LEFT JOIN contacts ON ticket_contact_id = contact_id WHERE $ticket_status_snippet AND ticket_client_id = '$session_client_id' ORDER BY ticket_id DESC");
For efficiency, this should only request the fields required to show the ticket number, subject, contact and status. We should also consider pagination if possible?
--
2023-02-01 - Created draft
2024-04-07 - Promoted to issue
The text was updated successfully, but these errors were encountered: