Eh? Un array? O_o

Se vuoi prova così:
Codice PHP:
<table width="60%" border="0">
  <tr>
    <td>ID</td>
    <td>Cognome</td>
    <td>Nome</td>
  </tr>
<?php
 $query 
mysql_query ("SELECT * FROM Venditori");
 while (
$a mysql_fetch_object ($query))
 {
?>
  <tr>
    <td><?php echo $a->ID?></td>
    <td><?php echo $a->Cognome?></td>
    <td><?php echo $a->Nome?></td>
  </tr>
<?php ?>
</table>
Questo, ovviamente, supponendo che tu abbia i campi di nome ID, Cognome e Nome! =)

Spero di esserti stato d'aiuto,

-Sergio