-
Notifications
You must be signed in to change notification settings - Fork 0
/
controllastatoiscrizione.php
73 lines (42 loc) · 1.6 KB
/
controllastatoiscrizione.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
<?php
function cerca_enrolment($idutente, $idcorso){
require("config.php");
$result = mysqli_query($mysqli, "SELECT * FROM mdle1_user_enrolments WHERE userid = $idutente");
while ($res = mysqli_fetch_array($result)){
$compara = $res['enrolid'];
$result2 = mysqli_query($mysqli, "SELECT * FROM mdle1_enrol WHERE id = '$compara'");
while ($res2 = mysqli_fetch_array($result2)){
if ($res2['courseid'] == $idcorso){
// if ($res2['status'] == 1){
$salvaenrol = $res2['id'];
//}
}
}
}
if (!empty($salvaenrol)){
$result = mysqli_query($mysqli, "SELECT * FROM mdle1_user_enrolments WHERE enrolid = $salvaenrol AND userid = $idutente");
while ($res= mysqli_fetch_array($result)){
$inizio = $res['timestart'];
$fine = $res['timeend'];
}
}
$inizio = gmdate("Y-m-d", $inizio);
if (!empty ($fine)){
$fine = gmdate("Y-m-d", $fine);
$data1 = strtotime($inizio);
$data2 = strtotime($fine);
$prepintervallo = $data2 - $data1;
$intervallo = round($prepintervallo / (60 * 60 * 24));
}
else {
$fine = "Nessuna fine iscrizione";
$intervallo = "Infiniti";
}
if (empty($fine)){
$fine = "--";
$intervallo = "Nessuna fine iscrizione";
}
$risultato = array("inizio"=>$inizio, "fine"=>$fine, "giorni"=>$intervallo, "riferimento"=>$salvaenrol);
return $risultato;
}
?>