]> git.treefish.org Git - banana.git/blob - summary.php
...
[banana.git] / summary.php
1 <?php
2   require 'include/head.inc';
3   require 'include/db.inc';
4   require 'include/session.inc';
5   require 'include/common.inc';
6
7   if(isset($_POST['submit']) && $_POST['mnumber']!="") {
8     $mnumber = trim($_POST['mnumber']);
9     $password = trim($_POST['password']);
10     
11     require 'include/usercheck.inc';
12
13     block("black", "summary for " . $_POST['mnumber']);
14
15     print "<b>Examples Submitted</b>";
16     print "<table>";
17
18     $tot_done = 0;
19
20     foreach ($SESSIONS as $session) {
21       if ($session['id'] == $SESSIONS_next) { break; }
22
23       $exdone = $db->query("SELECT thisdone, manydone FROM workdone WHERE mnumber=" . $mnumber . " AND session=" . $session['id'])->fetch(PDO::FETCH_NUM);
24
25       if ( $exdone[1] == "" ) { $exdone[1] = "0"; }
26
27       $tot_done = $tot_done + $exdone[1];
28
29       print "<tr>";
30       print "<td>" . $session['timestr'] . "&nbsp;&nbsp;</td>";
31       print "<td>" . $session['examples'] . "(" . $session['nexamples'] . ")" . "&nbsp;&nbsp;</td>";
32       print "<td>" . $exdone[1] . "/" . $session['nexamples'] . "(" . $exdone[0] . ")" . "&nbsp;&nbsp;</td>";
33       print "</tr>";
34     }
35     print "<tr>";
36     print "<td></td><td></td><td><b>" . $tot_done . "/" . $SESSIONS_totex . "</b></td>";
37     print "</tr>";
38
39     print "</table>";
40
41     print "<br>";
42
43     print "<b>Blackboard</b>";
44     $blackdone = $db->query("SELECT blackboard FROM students WHERE mnumber=" . $mnumber)->fetch(PDO::FETCH_NUM)[0];
45     
46     print "<br>";
47
48     for( $ib=0; $ib<$blackdone; $ib++ ) { echo "&nbsp;*&nbsp;"; }
49
50     exit;
51   }  
52 ?>
53
54 <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
55   <table bgcolor="black">
56     <tr><th><b><font color="white">Last submission</font></b></th><tr>
57   </table>
58
59   <table>
60     <tr>  
61       <th align="left">Mat.nummer:</th> <th align="left"><input type="text" name="mnumber"></th>
62     </tr>
63     <tr>  
64       <th align="left">Password:</th> <th align="left"><input type="text" name="password"></th>
65     </tr>
66     <tr><th colspan=2></th></tr>
67
68     <tr>
69       <th align="left"><input type="submit" name="submit" value="Show"></th> <th></th>
70     </tr>
71   </table>
72 </form>