Reworked Client Section URL routing to be standard with standard URL routing of ITFlow. It was just too confusing to mix to different URL routing operations

This commit is contained in:
johnnyq
2022-09-18 14:00:31 -04:00
parent 5d2e64515b
commit d7090d3286
43 changed files with 665 additions and 710 deletions

View File

@@ -1,3 +1,5 @@
<?php include("inc_all_client.php"); ?>
<?php
$sql_contacts = mysqli_query($mysqli,"SELECT * FROM contacts WHERE contact_client_id = $client_id AND contact_archived_at IS NULL AND contacts.company_id = $session_company_id ORDER BY contact_updated_at, contact_created_at DESC LIMIT 5");
@@ -275,3 +277,9 @@ $sql_tickets_stale = mysqli_query($mysqli,"SELECT * FROM tickets
}
</script>
<?php
include("footer.php");
?>