ENOCK JEANNICK OMAR bug41:need to be submitted by whom information. the system shows the information of the person that submit the assignement.

SIMPLICITY_link
Jeannick94 2021-04-17 13:02:29 +08:00
parent d5c40795a8
commit 4e66a3976c
1 changed files with 5 additions and 3 deletions

View File

@ -121,8 +121,9 @@ echo "<div class='alert' style='margin-left:20px;border-bottom:2px solid #1D91EF
$result1 = mysqli_query($con,"SELECT `Submission_ID`, `Submission_Date`, lab_report_submissions.Lab_Report_ID,
lab_report_submissions.Course_Group_id, `Attachment1`,
`Notes`, `Attachment2`, `Attachment3`, `Attachment4`, `Marks`, lab_report_submissions.Status,
`Title`,course_groups_table.Group_Name
`Title`,course_groups_table.Group_Name,course_groups_table.Group_Leader,users_table.Full_Name, users_table.Student_id
FROM `lab_report_submissions`
Left JOIN users_table on users_table.Student_ID=lab_report_submissions.Student_id
left JOIN course_groups_table on course_groups_table.Course_Group_id=lab_report_submissions.Course_Group_id
where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Submission_Date desc");
}
@ -164,13 +165,14 @@ where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Sub
$Submission_ID=$row['Submission_ID'];
$names=$row['Full_Name'];
$groupname=$row['Group_Name'];
$groupleader=$row['Group_Leader'];
$student_id=$row['sub_std'];
if($submitted_group==0)
{
$submitted_by= $names."(".$student_id.")";
} else {
$submitted_by="<i>(GROUP)</i> $groupname" ;
$submitted_by="$names $submitted_std <i>(GROUP)</i> $groupname ";
}
$base_att1 = basename($att1);