Hola carxl ... lo entendi muy bien, me falto el detalle del % mod del numero de registros con el numero de columnas...
Pero bueno lo aplique con For para entenderme mejor jeje:
Código PHP:
<table border="0" cellspacing="0" cellpadding="0">
<tr><td colspan="2" height="1"></td></tr>
<?php
for ($i=1; $row = mysql_fetch_row ($rs); $i++) {
$resto = ($i % 2);
if ($resto == 1) {
echo "<tr>";
}
echo '<td width="200">el contenido de $row</td>';
if ($resto == 0) {
echo "</tr>";
}
}
if ($resto <> 0) {
$ajust = 2 - $resto;
for ($j = 0; $j < $ajust; $j++) {
echo "<td> </td>";
}
echo "</tr>";
}
?>
</table>
gracias por la ayuda :)