Since I can't see your mysql table I will have to make a few asumptions.
i am assuming the following MySQL table.
+-------+-----------+
|name | novotes |
|-------+-----------+
|apple | 10 |
|orange | 20 |
|bannana| 15 |
+-------+-----------+
<?
$sql="select * from stuff";
$m=mysql_query($sql);
echo "<table>\n";
while($data=mysql_fetch_assoc($m){
echo "<tr><td>$data[name]</td><td><img src="pic.gif" height=\"10\" width=\"$data[novotes]\"></td></tr>";
}
echo "</table>";
?>
I haven't tested that. You need a picture called pic.gif.