<?php $arr = [ "one", "two", "three", "four", "five", "six", "seven", "eight", "nine", ]; foreach (array_chunk($arr, 3) as $group) { $first = array_shift($group); echo "<div>$first</div>\n"; echo "<div>\n"; foreach ($group as $elm) { echo "$elm\n"; } echo "</div>"; }
You have javascript disabled. You will not be able to edit any code.