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