Lavede et lille hack i toppen, hvor jeg hælder min data fra databasen over i et array, som jeg prepender med tomme arrays, for så mange tomme celler jeg ønsker:
$kolonner = 3; $startFrom = 5;
$res = $rel->conn->query("SELECT companyName,name,title,barcode FROM VisitorToRegister GROUP BY companyName ORDER BY barcode LIMIT 0,30") or die($fca->conn->error); while($row = $res->fetch_assoc()) { $arrOut[] = $row; } if($startFrom != 0) { for($s=0;$s<$startFrom;$s++) { array_unshift($arrOut,array()); } } $total = count($arrOut); $output = "<table border='1'>\n\t<tr>"; for($i=0;$i<$total;$i++) { if(!($i%$kolonner) && $i>0 && $i<$total-1) { //problem med tom startrække og potentiel tom slutrække fikset $output .= "\t</tr>\n\t<tr>\n"; } $output .= "\t\t<td width=\"$cellwidth\">"; if(count($arrOut[$i])>0) { $output .= $arrOut[$i]['companyName']."<br>"; $output .= $arrOut[$i]['name']."<br>"; $output .= $arrOut[$i]['title']."<br>"; } else { $output .= " ";
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.