<?php $arr = array("A","B","C","D","E","F","G"); foreach (array_chunk($arr, 2) as $list) { echo '<ul><li>' . implode('</li><li>', $list) . '</li></ul>' . PHP_EOL; }
You have javascript disabled. You will not be able to edit any code.