Farai cosi per stampare gli altri due campi:


[PHP]
$sql = "SELECT * FROM tabella.....";

$result = mysql_query($sql);

while($row = mysql_fetch_assoc($result)) {

echo $row['categoria'] . '
' . $row['img'] . '
' . $row['nome'];

}

Ciao!