-
Notifications
You must be signed in to change notification settings - Fork 8
/
education.php
102 lines (101 loc) · 3.21 KB
/
education.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?php
declare(strict_types=1);
/**
* MCCodes v2 by Dabomstew & ColdBlooded
*
* Repository: https://github.com/davemacaulay/mccodesv2
* License: MIT License
*/
global $db, $ir, $userid, $h;
require_once('globals.php');
echo '<h3>Schooling</h3>';
if ($ir['course'] > 0)
{
$cd =
$db->query(
"SELECT `crNAME`
FROM `courses`
WHERE `crID` = {$ir['course']}");
$coud = $db->fetch_row($cd);
$db->free_result($cd);
echo "You are currently doing the {$coud['crNAME']}, you have
{$ir['cdays']} days remaining.";
} elseif (isset($_GET['cstart'])) {
$_GET['cstart'] = abs((int)$_GET['cstart']);
//Verify.
$cd =
$db->query(
"SELECT `crCOST`, `crDAYS`, `crNAME`
FROM `courses`
WHERE `crID` = {$_GET['cstart']}");
if ($db->num_rows($cd) == 0) {
echo 'You are trying to start a non-existent course!';
} else {
$coud = $db->fetch_row($cd);
$db->free_result($cd);
$cdo =
$db->query(
"SELECT COUNT(`userid`)
FROM `coursesdone`
WHERE `userid` = $userid
AND `courseid` = {$_GET['cstart']}");
if ($ir['money'] < $coud['crCOST']) {
echo "You don't have enough money to start this course.";
$h->endpage();
exit;
}
if ($db->fetch_single($cdo) > 0) {
$db->free_result($cdo);
echo 'You have already done this course.';
$h->endpage();
exit;
}
$db->free_result($cdo);
$db->query(
"UPDATE `users`
SET `course` = {$_GET['cstart']},
`cdays` = {$coud['crDAYS']},
`money` = `money` - {$coud['crCOST']}
WHERE `userid` = $userid");
echo "You have started the {$coud['crNAME']},
it will take {$coud['crDAYS']} days to complete.";
}
} else {
//list courses
echo 'Here is a list of available courses.<br />';
$q =
$db->query(
'SELECT `crID`, `crNAME`, `crDESC`, `crCOST`
FROM `courses`');
echo "<table width='75%' cellspacing='1' class='table'>
<tr style='background:gray;'>
<th>Course</th>
<th>Description</th>
<th>Cost</th>
<th>Take</th>
</tr>";
while ($r = $db->fetch_row($q)) {
$cdo =
$db->query(
"SELECT COUNT(`userid`)
FROM `coursesdone`
WHERE `userid` = $userid
AND `courseid` = {$r['crID']}");
if ($db->fetch_single($cdo) > 0) {
$do = '<i>Done</i>';
} else {
$do = "<a href='education.php?cstart={$r['crID']}'>Take</a>";
}
$db->free_result($cdo);
echo "<tr>
<td>{$r['crNAME']}</td>
<td>{$r['crDESC']}</td>
<td>" . money_formatter((int)$r['crCOST'])
. "</td>
<td>$do</td>
</tr>";
}
$db->free_result($q);
echo '</table>';
}
$h->endpage();