Dato per atto di fede che la query funziona (l'ho provata) perchè richiamando la funzione Print_news() in questo modo il campo descrizione non viene trovato? E' desoldatamente vuoto mente nel costruttore ha un dentro un testo. Grazie
class news
{
var $titolo; // Queste sono le PROPERTIES

function news($id) // Questo è il COSTRUTTORE
{
$q="select titolo from news where id='$id' order by time_update desc";
$res=mysql_query($q);
$row=mysql_fetch_array($res);
$titolo=$row[0];

}
function Print_news()
{
echo $this->descrizione;

}


}