Ciao Shad!
Grazie mille della risposta! Ho utilizzato la tua formulazione ed ha funzionato alla perfezione. Di seguito (lo scrivo per eventuali altri interessati) il codice che ho utilizzato:
[PHP]
//connect:
$link = mysqli_connect($host, $user, $password, $db) or die("Errore di connessione al database: <br>" . mysqli_error($link));
//consultation:
$query = "
SELECT *
FROM POST
JOIN CATEGORIE
ON POST.ID_CATEGORIA= CATEGORIE.ID_CATEGORIA
JOIN AUTORI
ON POST.ID_AUTORE= AUTORI.ID_AUTORE
ORDER BY POST.DATA_CREAZIONE DESC"
or die("Errore nella query: <br>" . mysqli_error($link));
//execute the query.
$result = $link->query($query) or die("Errore nell'esequzione della query: <br>" . mysqli_error($link)); ;
// create empty var
$lista_post = '';
// fill created var with HTML
while($row = mysqli_fetch_array($result)) {
$lista_post .= '<li>Titolo: '.$row["post_title"].', Autore: '.$row["aut_first_name"].', Categoria di riferimento: '.$row["post_cat"].'</li>';
}
// display HTML
echo $lista_post;
[/PHP]