Olá, existe alguma forma de exibir uma consulta ao DB de forma mostrar lado a lado ao invez de linha por linha dentro da tabela? exemplo: ( tentei isso e não deu certo) $query = mysql_query("$consulta LIMIT $inicio,$max"); $todos = mysql_query($consulta); $total = mysql_num_rows($todos); $tp = $total / $max; While($x = mysql_fetch_array($query)){ echo " <table width=100% border=1> <tr> <td width=40%> $x[itemName]</td> <td width=10%> $x[itemPrice]</td> <td width=40%> $x[itemName]</td> <td width=10%> $x[itemPrice]</td> </tr> </table> <br> "; } Assim ele repete na tabela do lado $query = mysql_query("$consulta LIMIT $inicio,$max"); $todos = mysql_query($consulta); $total = mysql_num_rows($todos); $tp = $total / $max; While($x = mysql_fetch_array($query)){ echo " <table width=100% border=1> <tr> <td width=40%> $x[itemName]</td> <td width=10%> $x[itemPrice]</td> </tr> </table> <br> "; } E assim linha por linha Gostaria de saber se é possivel mostrar lado a lado, e se alguém pode me passar o script correto! Desde já agradeço cordialmente JAPA100