X-Git-Url: http://git.treefish.org/banana.git/blobdiff_plain/7b7a9103e0252d7accb3c456e0f16e50ce3ace96..7c6abf783f4b583b0c8bc43ad434fcce37a3dcc7:/admin/summary.php diff --git a/admin/summary.php b/admin/summary.php index 71ea061..3ed725d 100644 --- a/admin/summary.php +++ b/admin/summary.php @@ -2,6 +2,7 @@ require 'include/head.inc'; require 'include/db.inc'; require 'include/session.inc'; + require 'include/exams.inc'; require 'include/common.inc'; if ($db->query("SELECT COUNT(*) FROM students")->fetch(PDO::FETCH_NUM)[0] == 0) { @@ -14,21 +15,42 @@ $result = $db->query("SELECT firstname, lastname, mnumber, blackboard FROM students ORDER BY LOWER(lastname)"); print ""; - print ""; + print ""; + while ($student = $result->fetch(PDO::FETCH_ASSOC)) { $totexdone = 0; if( $db->query("SELECT COUNT(*) FROM workdone WHERE mnumber=" . $student['mnumber'])->fetch(PDO::FETCH_NUM)[0] > 0 ) { $exdone = $db->query("SELECT manydone FROM workdone WHERE mnumber=" . $student['mnumber']); while ( $subdone = $exdone->fetch(PDO::FETCH_NUM) ) { $totexdone += $subdone[0]; } } + + $examscore=0; + foreach ($EXAMS as $exam) { + $scorestr = $db->query("SELECT scorestr FROM examscore WHERE mnumber=" . $student['mnumber'] . " AND exam=" . $exam['id'])->fetch(PDO::FETCH_NUM)[0]; + if ($scorestr != "") { + $singlescore = 0; + foreach (explode(',',$scorestr) as $points) { $singlescore = $singlescore + $points; } + $examscore = $examscore + $singlescore/$exam['totscore']; + } + } + $examscore = ($examscore / $EXAMS_n)*100; + print ""; print ""; print ""; print ""; - print ""; - print ""; + print ""; + print ""; + print ""; print ""; } + print "
First name Last name Matr.nummer Examples Blackboard First name Last name Matr.nummer Blackboard Examples Exams 
" . $student['firstname'] . "" . $student['lastname'] . "" . $student['mnumber'] . "" . $totexdone . "/" . $SESSIONS_totex_nextinc . "" . $student['blackboard'] . ""; + print($student['blackboard']); + print ""; + printf("%3d", round(100 * floatval($totexdone) / floatval($SESSIONS_totex_nextinc))); + print "%"; + printf("%3d", round($examscore)); + print "%
"; ?> \ No newline at end of file