Código PHP:
...
...
echo'<table width="100%" border="1" cellspacing="2" cellpadding="0">';
while($Rows=mysql_fetch_array($Query_Seleccionar))
{
for($x=0;$x<35;$x++)
{
echo <td>$Rows[$x]</tr>;
}
}
Código PHP:
...
...
$html.='<table width="100%" border="1" cellspacing="2" cellpadding="0">';
while($Rows=mysql_fetch_array($Query_Seleccionar))
{
for($x=0;$x<35;$x++)
{
$html.='<td>'.$Rows[$x].'</tr>';
}
}
echo $html;
Saludos!