Make student's interface look better.
parent
a4a413f700
commit
89395dbb98
961
Course.php
961
Course.php
File diff suppressed because it is too large
Load Diff
|
@ -639,7 +639,7 @@ INNER JOIN course_students_table on course_students_table.Course_ID=courses_tabl
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class='col-md-2'> <br>
|
<div class='col-md-2'> <br>
|
||||||
<input type='submit' class='btn btn-primary' value='Find'>
|
<button type='submit' class='btn btn-primary'>Find</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
208
SubmitLab.php
208
SubmitLab.php
|
@ -9,121 +9,117 @@ include 'Header.php';
|
||||||
|
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
||||||
<div class='row'>
|
<div class='row'>
|
||||||
|
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$c_date = date("Y-m-d H:i");
|
$c_date = date("Y-m-d H:i");
|
||||||
$student_id = $_SESSION["user_student_id"];
|
$student_id = $_SESSION["user_student_id"];
|
||||||
|
|
||||||
if(!empty($_GET["id"]))
|
if(!empty($_GET["id"]))
|
||||||
{
|
|
||||||
$id = mysqli_real_escape_string($con, $_GET["id"]);
|
|
||||||
$url = mysqli_real_escape_string($con, $_GET["url"]);
|
|
||||||
|
|
||||||
$result1 = mysqli_query($con," SELECT `Type`, `Lab_Report_ID`, `Course_ID`, `Posted_Date`, `Deadline`, `Instructions`, `Title`, `Attachment_link_1`, `Attachment_link_2`, `Attachment_link_3`, `Attachment_link_4` FROM `lab_reports_table` WHERE Lab_Report_ID=$id and Deadline > '$c_date' ORDER by Lab_Report_ID DESC");
|
|
||||||
if(mysqli_num_rows($result1) == 0)
|
|
||||||
{
|
{
|
||||||
echo "No active assignments for this course so far.";
|
$id = mysqli_real_escape_string($con, $_GET["id"]);
|
||||||
|
$url = mysqli_real_escape_string($con, $_GET["url"]);
|
||||||
} else {
|
|
||||||
|
|
||||||
while($row = mysqli_fetch_assoc($result1)) {
|
|
||||||
|
|
||||||
$Course_ID = $row['Course_ID'];
|
|
||||||
$title = $row['Title'];
|
|
||||||
$ins = $row['Instructions'];
|
|
||||||
$posted = $row['Posted_Date'];
|
|
||||||
$deadline = $row['Deadline'];
|
|
||||||
$att1 = $row['Attachment_link_1'];
|
|
||||||
$att2 = $row['Attachment_link_2'];
|
|
||||||
$att3 = $row['Attachment_link_3'];
|
|
||||||
$att4 = $row['Attachment_link_4'];
|
|
||||||
$labid = $row['Lab_Report_ID'];
|
|
||||||
$type = $row['Type'];
|
|
||||||
|
|
||||||
//----------------------------------Giving both the Group Admin and Group Members same priviledges to submit assignment--------------------------------------
|
|
||||||
if($type=="Group"){
|
|
||||||
$resultx1 = mysqli_query($con,"SELECT Course_Group_id FROM `course_groups_table` WHERE (Course_id=$Course_ID) and ((Group_Member=$student_id ) or (Group_Member2=$student_id ) or (Group_Member3=$student_id ) or (Group_Member4=$student_id ) or (Group_Leader=$student_id))");
|
|
||||||
while($row = mysqli_fetch_assoc($resultx1)) {
|
|
||||||
$_SESSION["Group_ID"] = $row['Course_Group_id'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if($_SESSION["Group_ID"] < 1)
|
|
||||||
{
|
|
||||||
echo" <center><h3> This Lab report can only be submitted by Group Admin </h3> </center> ";
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
$full_link="<a href='~\..\Lab_Report_Assignments\\$att1'>$att1</a>";
|
|
||||||
|
|
||||||
if($att2!=""){
|
|
||||||
$full_link = $full_link."| <a href='~\..\Lab_Report_Assignments\\$att2'>$att2</a>";
|
|
||||||
}
|
|
||||||
if($att3!=""){
|
|
||||||
$full_link = $full_link."| <a href='~\..\Lab_Report_Assignments\\$att3'>$att3</a>";
|
|
||||||
}
|
|
||||||
|
|
||||||
if($att4!=""){
|
|
||||||
$full_link = $full_link."| <a href='~\..\Lab_Report_Assignments\\$att4'>$att4</a>";
|
|
||||||
}
|
|
||||||
|
|
||||||
echo "<div><a href='~\..\Courses.php?course=$url'> Courses > $url > Submit > $title </a></div>";
|
|
||||||
|
|
||||||
}
|
$result1 = mysqli_query($con," SELECT `Type`, `Lab_Report_ID`, `Course_ID`, `Posted_Date`, `Deadline`, `Instructions`, `Title`, `Attachment_link_1`, `Attachment_link_2`, `Attachment_link_3`, `Attachment_link_4` FROM `lab_reports_table` WHERE Lab_Report_ID=$id and Deadline > '$c_date' ORDER by Lab_Report_ID DESC");
|
||||||
|
if(mysqli_num_rows($result1) == 0)
|
||||||
|
{
|
||||||
|
echo "No active assignments for this course so far.";
|
||||||
|
|
||||||
|
} else {
|
||||||
|
|
||||||
|
while($row = mysqli_fetch_assoc($result1)) {
|
||||||
|
|
||||||
|
$Course_ID = $row['Course_ID'];
|
||||||
|
$title = $row['Title'];
|
||||||
|
$ins = $row['Instructions'];
|
||||||
|
$posted = $row['Posted_Date'];
|
||||||
|
$deadline = $row['Deadline'];
|
||||||
|
$att1 = $row['Attachment_link_1'];
|
||||||
|
$att2 = $row['Attachment_link_2'];
|
||||||
|
$att3 = $row['Attachment_link_3'];
|
||||||
|
$att4 = $row['Attachment_link_4'];
|
||||||
|
$labid = $row['Lab_Report_ID'];
|
||||||
|
$type = $row['Type'];
|
||||||
|
|
||||||
|
//----------------------------------Giving both the Group Admin and Group Members same priviledges to submit assignment--------------------------------------
|
||||||
|
if($type=="Group"){
|
||||||
|
$resultx1 = mysqli_query($con,"SELECT Course_Group_id FROM `course_groups_table` WHERE (Course_id=$Course_ID) and ((Group_Member=$student_id ) or (Group_Member2=$student_id ) or (Group_Member3=$student_id ) or (Group_Member4=$student_id ) or (Group_Leader=$student_id))");
|
||||||
|
while($row = mysqli_fetch_assoc($resultx1)) {
|
||||||
|
$_SESSION["Group_ID"] = $row['Course_Group_id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
if($_SESSION["Group_ID"] < 1)
|
||||||
|
{
|
||||||
|
echo" <center><h3> This Lab report can only be submitted by Group Admin </h3> </center> ";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$full_link="<a href='~\..\Lab_Report_Assignments\\$att1'>$att1</a>";
|
||||||
|
|
||||||
|
if($att2!=""){
|
||||||
|
$full_link = $full_link."| <a href='~\..\Lab_Report_Assignments\\$att2'>$att2</a>";
|
||||||
|
}
|
||||||
|
if($att3!=""){
|
||||||
|
$full_link = $full_link."| <a href='~\..\Lab_Report_Assignments\\$att3'>$att3</a>";
|
||||||
|
}
|
||||||
|
|
||||||
|
if($att4!=""){
|
||||||
|
$full_link = $full_link."| <a href='~\..\Lab_Report_Assignments\\$att4'>$att4</a>";
|
||||||
|
}
|
||||||
|
|
||||||
|
echo "<div><a href='~\..\Courses.php?course=$url'> Courses > $url > Submit > $title </a></div>";
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$Group_ID = $_SESSION["Group_ID"];
|
$Group_ID = $_SESSION["Group_ID"];
|
||||||
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
|
|
||||||
<h3>Submit assignment</h3>
|
<h1 class="display-6">Submit assignment</h1>
|
||||||
<hr>
|
<hr>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
|
|
||||||
|
|
||||||
<form method='post' enctype='multipart/form-data' action='Script.php'>
|
<form method='post' enctype='multipart/form-data' action='Script.php'>
|
||||||
<input type='hidden' name='frm_submitlab' value='true' required=''/>
|
<input type='hidden' name='frm_submitlab' value='true' required=''/>
|
||||||
<input type='hidden' name='lab_id' value='<?php echo $id; ?>' required=''/>
|
<input type='hidden' name='lab_id' value='<?php echo $id; ?>' required=''/>
|
||||||
<input type='hidden' name='student_id' value='<?php echo $student_id; ?>' required=''/>
|
<input type='hidden' name='student_id' value='<?php echo $student_id; ?>' required=''/>
|
||||||
<input type='hidden' name='group_id' value='<?php echo $Group_ID; ?>' required=''/>
|
<input type='hidden' name='group_id' value='<?php echo $Group_ID; ?>' required=''/>
|
||||||
<input type='hidden' name='url' value='<?php echo $url; ?>' required=''/>
|
<input type='hidden' name='url' value='<?php echo $url; ?>' required=''/>
|
||||||
|
<div class='mb-3'>
|
||||||
Title
|
<label class='form-label'>Title</label>
|
||||||
<input type='text' name='title' placeholder='Ttle' class='form-control' required=''>
|
<input type='text' name='title' placeholder='Assignment submission title' class='form-control' required=''>
|
||||||
|
</div>
|
||||||
Attachment 1
|
<div class='mb-3'>
|
||||||
<input type='file' name='attachment1' placeholder='Attachment 1' class='form-control' required=''>
|
<label class='form-label'>Attachment 1</label>
|
||||||
|
<input type='file' name='attachment1' placeholder='Attachment 1' class='form-control' required=''>
|
||||||
Attachment 2
|
<label class='form-label'>Attachment 2</label>
|
||||||
<input type='file' name='attachment2' placeholder='Attachment 2' class='form-control'>
|
<input type='file' name='attachment2' placeholder='Attachment 2' class='form-control'>
|
||||||
|
<label class='form-label'>Attachment 3</label>
|
||||||
|
<input type='file' name='attachment3' placeholder='Attachment 3' class='form-control' >
|
||||||
Attachment 3
|
<label class='form-label'>Attachment 4</label>
|
||||||
<input type='file' name='attachment3' placeholder='Attachment 3' class='form-control' >
|
<input type='file' name='attachment4' placeholder='Attachment 4' class='form-control' >
|
||||||
|
</div>
|
||||||
Attachment 4
|
<button type='submit' class='btn btn-primary'>Submit</button>
|
||||||
<input type='file' name='attachment4' placeholder='Attachment 4' class='form-control' >
|
</form>
|
||||||
<br>
|
|
||||||
|
</div>
|
||||||
<input type='submit' class='btn btn-primary' value='Submit'><br>
|
|
||||||
</form>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue