Codice PHP:
$query="select pippo from tabella where id='2'";
$result=mysql_query($query);
while (
$row mysql_fetch_assoc($result)) {
 
$pippo .= $row['pippo'];
}
echo 
"<table>";
echo 
"<tr><td>";
echo 
$pippo;
echo 
"</td></tr>";
}
?>
</table>