-
Notifications
You must be signed in to change notification settings - Fork 0
/
segretario.php
45 lines (41 loc) · 1.88 KB
/
segretario.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
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "picciotti";
// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);;
if (!$conn) {
die("Errore nella connessione al database!");
}
// recuperare dati dal database
$sql = "SELECT * FROM richiesta where tipologia = 'hardware' and status != 'risolto' order by data";
$risultato = mysqli_query($conn, $sql);
// stampare la tabella
if (mysqli_num_rows($risultato) > 0) {
$i = 1;
echo "<table>";
echo "<tr> <th>Data</th> <th>priorità</th> <th>descrizione</th> <th>ambito</th> <th>luogo</th> <th>tipologia</th> <th>status</th> <th>correggi<th></tr>";
// output dei dati di ogni riga
while($riga = mysqli_fetch_assoc($risultato)) {
echo "<tr>";
echo "<td>" . $riga['data'] . "</td>";
echo "<td>" . $riga['priorità'] . "</td>";
echo "<td>" . $riga['descrizione'] . "</td>";
echo "<td>" . $riga['ambito'] . "</td>";
echo "<td>" . $riga['luogo'] . "</td>";
echo "<td>" . $riga['tipologia'] . "</td>";
echo "<td>" . $riga['status'] . "</td>";
echo "<td>" ."<form action='update.php' method='post'>
<button type='submit' id='num' name='num' value=$i>Risolvi<br>
</form>"."</td>";
$i+=1;
echo "</tr>";
}
echo "</table>";
} else {
echo "0 risultati";
}
// chiudere la connessione
mysqli_close($conn);
?>