-
Notifications
You must be signed in to change notification settings - Fork 1
/
domanda2.php
221 lines (204 loc) · 9.96 KB
/
domanda2.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!-- Page that allows students to view the questions associated with a given database after executing some command -->
<?php
session_start();
if(!isset($_SESSION['username']) || empty($_SESSION['username'])) {
header('location: index.php');
}
$queryUtente = $_POST['queryUtente'];
$tipoOperazione = $_POST['tipoOperazioneRichiesta']
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="icon" href="img/logo.png"/>
<title> Basi di Dati - SQL </title>
</head>
<body>
<?php require_once("navbarStudente.php") ?>
<?php
if ($tipoOperazione==5 && trim($queryUtente) != null){
// DB connection
$link = mysqli_connect($_SESSION['servername'], "studenteInsert", $_SESSION['psw'], $_SESSION['DBname']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$username = $_SESSION['username'];
$domanda = $_SESSION['DomandaSelezionata'];
$nomeDB = $_SESSION['nomeDatabaseSelezionato'];
$queryInserimento = "INSERT INTO RISPOSTE_ALUNNI (Username, Risposta, Domanda, NomeDB) VALUES ('" . $username . "','" . $queryUtente . "','" . $domanda . "','" . $nomeDB . "')";
// Query sent to the teacher
if ($result = mysqli_query($link, $queryInserimento)){
echo "<div class='alert alert-success alert-dismissible fade show' role='alert'>
Risposta inviata al docente
</div>";
}
// error sending the query to the teacher
else {
echo "<div class='alert alert-warning alert-dismissible fade show' role='alert'>
Si è verificato un errore durante l'invio
</div>";
}
}
// Unable to send query to teacher
else if ($tipoOperazione==5){
echo "<div class='alert alert-warning alert-dismissible fade show' role='alert'>
Impossibile inviare la risposta al docente
</div>";
}
?>
<div class="container">
<div class="row justify-content-around">
<?php
// Loading previous / next question
if ($tipoOperazione==1){
$_SESSION['DomandaSelezionata'] = $_SESSION['DomandaSelezionata']-1;
}
if ($tipoOperazione==4){
$_SESSION['DomandaSelezionata'] = $_SESSION['DomandaSelezionata']+1;
}
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'], $_SESSION['DBname']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$sql = "SELECT * FROM DOMANDA WHERE (Numero = '" . $_SESSION['DomandaSelezionata'] . "' AND NomeDatabase = '" . $_SESSION['nomeDatabaseSelezionato'] . "')";
$result = mysqli_query($link, $sql);
$riga = mysqli_fetch_array(($result));
echo "<h5>" . $riga['Domanda'] . "</h5>";
?>
</div>
<form action='domanda2.php' method='post'>
<div class="row justify-content-around">
<div class="form-group">
<textarea class="form-control" cols="70" rows="7" name="queryUtente"> <?php if (($tipoOperazione==2) || ($tipoOperazione==3)) {echo trim($queryUtente);} ?> </textarea>
</div>
<div class="form-group">
<!-- View result of query -->
<?php
if ( ( $queryUtente!= null && $tipoOperazione==2 ) || ( $queryUtente!= null && $tipoOperazione==3) ) {
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'], $_SESSION['nomeDatabaseSelezionato']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$sql = $queryUtente;
if (!$result = mysqli_query($link, $sql)){
echo "Forma della query errata o operazione non consetita";
} else {
if (mysqli_num_rows($result)<1) {
echo "La query non ha generato nessun risultato";
} else {
$rigaRisultato = mysqli_fetch_assoc($result);
echo "<table border='1'>";
echo "<tr>";
echo "<th>".join("</th><th>",array_keys($rigaRisultato))."</th>";
echo "</tr>";
while ($rigaRisultato) {
echo "<tr>";
echo "<td>".join("</td><td>",$rigaRisultato)."</td>";
echo "</tr>";
$rigaRisultato = mysqli_fetch_assoc($result);
};
echo "</table>";
}
}
}
?>
</div>
</div>
<!-- View correct answer -->
<div class="row justify-content-around">
<div class="form-group">
<?php
if ($riga['Risposta']!= null){
echo "<textarea class='form-control' cols='70' rows='7' readonly placeholder='Qui potrai visualizzare la soluzione'>";
}
if ($tipoOperazione==3){
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'], $_SESSION['DBname']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$sql = "SELECT Risposta FROM DOMANDA WHERE (Numero = '" . $_SESSION['DomandaSelezionata'] . "' AND NomeDatabase = '" . $_SESSION['nomeDatabaseSelezionato'] . "')";
$result = mysqli_query($link, $sql);
$soluzione = mysqli_fetch_array(($result));
echo $soluzione['Risposta'];
}
if ($riga['Risposta']!= null){
echo "</textarea>";
}
?>
</div>
<div class="form-group">
<?php
if ($tipoOperazione==3){
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'], $_SESSION['nomeDatabaseSelezionato']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$sql = $soluzione['Risposta'];
if (!$result = mysqli_query($link, $sql)){
echo "Forma della query errata";
} else {
if (mysqli_num_rows($result)<1) {
echo "La query non ha generato nessun risultato";
} else {
$rigaSoluzione = mysqli_fetch_assoc($result);
echo "<table border='1'>";
echo "<tr>";
echo "<th>".join("</th><th>",array_keys($rigaSoluzione))."</th>";
echo "</tr>";
while ($rigaSoluzione) {
echo "<tr>";
echo "<td>".join("</td><td>",$rigaSoluzione)."</td>";
echo "</tr>";
$rigaSoluzione = mysqli_fetch_assoc($result);
};
echo "</table>";
}
}
}
?>
</div>
</div>
<div class="row justify-content-around">
<?php
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'],$_SESSION['DBname']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$checkDomandaPrecedente = $_SESSION['DomandaSelezionata']-1;
$sql = "SELECT Risposta FROM DOMANDA WHERE (Numero = '" . $checkDomandaPrecedente . "' AND NomeDatabase = '" . $_SESSION['nomeDatabaseSelezionato'] . "')";
$result = mysqli_query($link, $sql);
$checkEsistenzaDomandaPrecedente = mysqli_fetch_array(($result));
if (!empty($checkEsistenzaDomandaPrecedente)){
echo "<button type='submit' class='btn btn-primary' name='tipoOperazioneRichiesta' value='1'> Domanda precedente </button>";
}
?>
<button type="submit" class="btn btn-primary" name="tipoOperazioneRichiesta" value="2"> Visualizza il risulatato della query </button>
<?php
if ($riga['Risposta']!= null){
echo "<button type='submit' class='btn btn-primary' name='tipoOperazioneRichiesta' value='3'> Visualizza la risposta corretta </button>";
}
?>
<button type="submit" class="btn btn-primary" name="tipoOperazioneRichiesta" value="5"> Invia la risposta al Docente </button>
<?php
$link = mysqli_connect($_SESSION['servername'], $_SESSION['usertype'], $_SESSION['psw'], $_SESSION['DBname']);
if ($link === false) {
die("ERROR:Could not connect. " . mysqli_connect_error());
}
$checkDomandaSuccessiva = $_SESSION['DomandaSelezionata']+1;
$sql = "SELECT Risposta FROM DOMANDA WHERE (Numero = '" . $checkDomandaSuccessiva . "' AND NomeDatabase = '" . $_SESSION['nomeDatabaseSelezionato'] . "')";
$result = mysqli_query($link, $sql);
$checkEsistenzaDomandaPrecedente = mysqli_fetch_array(($result));
if (!empty($checkEsistenzaDomandaPrecedente)){
echo "<button type='submit' class='btn btn-primary' name='tipoOperazioneRichiesta' value='4'> Domanda successiva </button>";
}
?>
</div>
</form>
</div>
<?php require_once("footer.php") ?>
</body>
</html>