Se suggerisci questo:
Codice PHP:
$results_articles mysql_query("SELECT title, body, image_id 
                                  FROM cms_articles JOIN images 
                                   ON cms_articles.art_id=images.art_id WHERE cat IN(1, 2)  
                                    GROUP BY cat ORDER BY cat DESC"
)or die (mysql_error());

while (
$results_art mysql_fetch_array($results_articles)){
          
extract($results_art);
          echo 
"<table border=1 width=270 height=100 align=left>";
          echo 
"<tr><td class=articles>[b]".$results_art['title']."[/b]</td></tr>";
          echo 
"<tr><td>".$results_art['body']."</td></tr>";
          echo 
"</table>"
Non mi restituisce niente....