forked from Fecsio/WeBotanic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
48 lines (35 loc) · 1.32 KB
/
index.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
<?php
$eventi = "SELECT Id, DataInizio, DataFine, Nome FROM Eventi WHERE DataFine > CURDATE() ORDER BY DataFine LIMIT 3";
$notizie = "SELECT Id, Titolo, DataPub FROM Notizie ORDER BY DataPub DESC LIMIT 3";
require "php/connessione.php";
$output = $connessione->query($eventi);
if(!$output)
$stampa = servError();
else {
if($output->num_rows == 0)
$stampa = "<p> Nessun evento </p>";
else {
$stampa = '<ul>';
while($row = $output -> fetch_array(MYSQLI_ASSOC)) {
$stampa .= "<li><a href=\"eventi.php#id".$row['Id']."\">".$row['Nome']."</a></li>\n";
}
$stampa .= "</ul>";
}
}
$index = str_replace('listaEventi', $stampa, file_get_contents('templates/index.txt'));
$output = $connessione->query($notizie);
if(!$output)
$stampa = "<p class=\"errori\"> Servizio momentaneamente non disponibile. Riprovare più tardi</p>";
else {
if($output->num_rows == 0)
$stampa = "<p> Nessuna notizia</p>";
else {
$stampa = '<ul>';
while($row = $output -> fetch_array(MYSQLI_ASSOC)) {
$stampa .= "<li><a href=\"notizie.php#id".$row['Id']."\">".$row['Titolo']."</a></li>\n";
}
$stampa .='</ul>';
}
}
$index = str_replace('listaNotizie', $stampa, $index);
echo $index;