Added Project Prefix and Project Numbering System

This commit is contained in:
johnnyq
2024-04-08 16:48:06 -04:00
parent f4051fe718
commit 16fb1467a2
11 changed files with 126 additions and 7 deletions

View File

@@ -24,6 +24,8 @@ if (isset($_GET['project_id'])) {
$row = mysqli_fetch_array($sql_project);
$project_id = intval($row['project_id']);
$project_prefix = nullable_htmlentities($row['project_prefix']);
$project_number = intval($row['project_number']);
$project_name = nullable_htmlentities($row['project_name']);
$project_description = nullable_htmlentities($row['project_description']);
$project_due = nullable_htmlentities($row['project_due']);