query("SELECT cell_index, cleaned_label FROM reserved_cells")->fetchAll(PDO::FETCH_KEY_PAIR); // Genereer dynamische kerstboomstructuur met exact 500 ballen $index = 0; $total = 0; $treeStructure = []; for ($row = 1; $total < TOTAL_CELLS; $row++) { $rowCount = min($row, TOTAL_CELLS - $total); // zorg dat we exact op 500 stoppen $rowCells = []; for ($i = 0; $i < $rowCount; $i++) { $rowCells[] = $index++; } $treeStructure[] = $rowCells; $total += $rowCount; } ?>