<?php $abc = [1,2,3,4,5,6,7,8,9,10,11,12,13,14,15]; $cols = []; $perCol = 7; foreach($abc as $index => $val) { $colInd = $index / $perCol; $cols[$colInd][] = $val; } print_r($cols);
You have javascript disabled. You will not be able to edit any code.