When I do a display with mysql_fetch_array it seems to cut off the last result. for example when there is 6 results to display it only displays 5. here is a snipit of code.
while ($myrow = mysql_fetch_array($result)) {
echo "<table border=0 width=650 bgcolor=#ccccc>";
echo "<tr><td width=160><b><font color =#CC0000 face=Georgia> Company Name:</font></b></td>";
echo "<td width=398><font color =#000099 face=Georgia>";printf("%s", $myrow['CompanyName']);
echo "</font></td>";
echo "<td width=92 rowspan=10 valign=top>";printf("%s", $myrow['CompanyLogo']);
echo "</td></tr>";
echo "<tr><td width=150><b><font color =#CC0000 face=Georgia>Contact Name:</font></b></td>";
echo "<td width=500><font color =#000099 face=Georgia>";printf("%s", $myrow['ContactName']);
echo "</font></td></tr>";
echo "<tr><td width=150><b><font color =#CC0000 face=Georgia> Address:</font></b></td>";
echo "<td width=500><font color =#000099 face=Georgia>";printf("%s", $myrow['Address']);
echo "</font></td></tr>";
echo "<tr><td width=150><b><font color =#CC0000 face=Georgia> City:</font></b></td>";
echo "<td width=500><font color =#000099 face=Georgia>";printf("%s", $myrow['City']);
echo "</font></td></tr>";
etc...
any ideas?