Código PHP:
$result1 = mysql_query ("SELECT .....") or die (mysql_error());
$result2 = mysql_query ("SELECT .....") or die (mysql_error());
echo '<table>';
while ($rows = mysql_fetch_array ($result1)) {
echo '<tr>';
echo '<td>'.$rows[$contador].'</td>';
echo '<td>'.$rows2[$contador2].'</td>';
echo '</tr>';
mysql_fetch_assoc($result2));
}
echo '</table>';
Siempre arrojan el mismo número de resultados ambas consultas?