I have array
and with it I make a table with data comparison, this table is too large (you have to scroll scroll
of the mouse a lot) and the right side of the screen is blank.
Script:
reset($quebra);
while (key( $quebra) !== null) {
// print("Numero do Array".key($quebra)."-- Resultado do Array ".current($quebra))."<br>\r\n";
$row = explode (" " , key($quebra) . "=" . current($quebra));
$posicao3 = strpos($row[0], '=');
if (isset($ocupados[substr($row[0],$posicao3+1,4)]))
$dadosweb .= "<tr ><td bgcolor=#FF0000>".substr($row[0],$posicao3+1,4)."</td><td >".$row[20]."</td>";
else
$dadosweb .= "<tr><td >".substr($row[0],$posicao3+1,4)."</td><td >".$row[20]."</td>";
$dadosweb .= "<td ></td><td ></td></tr>";
next($quebra);
}
Question
How can I split this table to better fit the page?