mirror of
https://github.com/oddluck/limnoria-plugins.git
synced 2025-05-06 19:43:51 -05:00
Adding more to player.php, total score and num asked
This commit is contained in:
parent
278b23e584
commit
42f1b8e90c
16
php/user.php
16
php/user.php
@ -112,7 +112,10 @@
|
|||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Username</th>
|
<th>Username</th>
|
||||||
<th>Average time</th>
|
<th>Average Time/Question (Exludes KAOS)</th>
|
||||||
|
<th>Average Points/Question (Exludes KAOS)</th>
|
||||||
|
<th>Total Points</th>
|
||||||
|
<th>Question Answered</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -128,7 +131,9 @@
|
|||||||
(select sum(num_answered)
|
(select sum(num_answered)
|
||||||
from triviauserlog
|
from triviauserlog
|
||||||
where username=:username))
|
where username=:username))
|
||||||
) as score
|
) as score,
|
||||||
|
(select sum(points_made) from triviauserlog t3 where username=:username) as points,
|
||||||
|
(select sum(num_answered) from triviauserlog t4 where username=:username) as q_asked
|
||||||
from (select
|
from (select
|
||||||
tl3.id as id2,
|
tl3.id as id2,
|
||||||
tl3.average_time * 1.0 as t,
|
tl3.average_time * 1.0 as t,
|
||||||
@ -136,7 +141,10 @@
|
|||||||
tl3.num_answered * 1.0 as n
|
tl3.num_answered * 1.0 as n
|
||||||
from triviauserlog tl3
|
from triviauserlog tl3
|
||||||
) tl2
|
) tl2
|
||||||
inner join triviauserlog tl on tl.username=:username and id=tl2.id2');
|
inner join triviauserlog tl
|
||||||
|
on tl.username=:username
|
||||||
|
and id=tl2.id2
|
||||||
|
');
|
||||||
$q->execute(array('username'=>$username));
|
$q->execute(array('username'=>$username));
|
||||||
if ($q === false) {
|
if ($q === false) {
|
||||||
die("Error: database error: table does not exist\n");
|
die("Error: database error: table does not exist\n");
|
||||||
@ -147,6 +155,8 @@
|
|||||||
echo '<td>' . $username . '</td>';
|
echo '<td>' . $username . '</td>';
|
||||||
echo '<td>' . $res['count'] . '</td>';
|
echo '<td>' . $res['count'] . '</td>';
|
||||||
echo '<td>' . $res['score'] . '</td>';
|
echo '<td>' . $res['score'] . '</td>';
|
||||||
|
echo '<td>' . $res['points'] . '</td>';
|
||||||
|
echo '<td>' . $res['q_asked'] . '</td>';
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user