]> git.treefish.org Git - banana.git/blob - summary.php
cfc0565c8380897d9b4be0fd00c75447eb233405
[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     if( isset($SESSIONS) ) {
21       foreach ($SESSIONS as $session) {
22         if ($session['id'] == $SESSIONS_next) { break; }
23
24         $exdone = $db->query("SELECT thisdone, manydone FROM workdone WHERE mnumber=" . $mnumber . " AND session=" . $session['id'])->fetch(PDO::FETCH_NUM);
25
26         if ( $exdone[1] == "" ) { $exdone[1] = "0"; }
27
28         $tot_done = $tot_done + $exdone[1];
29
30         print "<tr>";
31         print "<td>" . $session['timestr'] . "&nbsp;&nbsp;</td>";
32         print "<td>" . $session['examples'] . "(" . $session['nexamples'] . ")" . "&nbsp;&nbsp;</td>";
33         print "<td>" . $exdone[1] . "/" . $session['nexamples'] . "(" . $exdone[0] . ")" . "&nbsp;&nbsp;</td>";
34         print "</tr>";
35       }
36     }
37     print "<tr>";
38     print "<td></td><td></td><td><b>" . $tot_done . "/" . $SESSIONS_totex . "</b></td>";
39     print "</tr>";
40
41     print "</table>";
42
43     print "<br>";
44
45     print "<b>Blackboard</b>";
46     $blackdone = $db->query("SELECT blackboard FROM students WHERE mnumber=" . $mnumber)->fetch(PDO::FETCH_NUM)[0];
47     
48     print "<br>";
49
50     for( $ib=0; $ib<$blackdone; $ib++ ) { echo "&nbsp;*&nbsp;"; }
51
52     exit;
53   }  
54 ?>
55
56 <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
57   <table bgcolor="black">
58     <tr><th><b><font color="white">Summary</font></b></th><tr>
59   </table>
60
61   <table>
62     <tr>  
63       <th align="left">Mat.nummer:</th> <th align="left"><input type="text" name="mnumber"></th>
64     </tr>
65     <tr>  
66       <th align="left">Password:</th> <th align="left"><input type="text" name="password"></th>
67     </tr>
68     <tr><th colspan=2></th></tr>
69
70     <tr>
71       <th align="left"><input type="submit" name="submit" value="Show"></th> <th></th>
72     </tr>
73   </table>
74 </form>