diff --git a/Submissions.php b/Submissions.php
index 79bf09f..c29bf23 100644
--- a/Submissions.php
+++ b/Submissions.php
@@ -121,8 +121,9 @@ echo "
(GROUP) $groupname" ;
+ $submitted_by="$student_name ($submitter_student_number) for group $groupname ";
}
$base_att1 = basename($att1);
@@ -194,7 +196,7 @@ where Lab_Report_ID=$id and lab_report_submissions.Status='Pending' order by Sub
echo "
$title by: $submitted_by
- Submitted at $posted Mark Submission Attachments : $full_link
+ Submitted : $posted Mark Submission Attachments : $full_link
";
}
@@ -254,17 +256,17 @@ where Lab_Report_ID=$id and lab_report_submissions.Status='Marked' Order by lab
$att4=$row['Attachment4'];
$labid=$row['Lab_Report_ID'];
- $submitted_std=$row['Student_id'];
+ $submitter_student_number=$row['Student_id'];
$submitted_group=$row['Course_Group_id'];
$Submission_ID=$row['Submission_ID'];
- $names=$row['Full_Name'];
+ $student_name=$row['Full_Name'];
$student_id=$row['sub_std'];
$Visibility=$row['Visibility'];
$notes=$row['Notes'];
if($submitted_group==0)
{
- $submitted_by= $names."(".$student_id.")";
+ $submitted_by= $student_name."(".$student_id.")";
} else {
$submitted_by="
(GROUP) Group X " ;
}
@@ -350,16 +352,16 @@ where Lab_Report_ID=$id and lab_report_submissions.Status='Remarking'");
$remarking_reason=$row['Remarking_Reason'];
- $submitted_std=$row['Student_id'];
+ $submitter_student_number=$row['Student_id'];
$submitted_group=$row['Course_Group_id'];
$Submission_ID=$row['Submission_ID'];
- $names=$row['Full_Name'];
+ $student_name=$row['Full_Name'];
$student_id=$row['sub_std'];
$gname=$row['Group_Name '];
if($submitted_group==0)
{
- $submitted_by= $names."(".$student_id.")";
+ $submitted_by= $student_name."(".$student_id.")";
} else {
$submitted_by="
(GROUP) $gname" ;
}