Source Code:
(back to article)
<?php $results = array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12); $results_per_page = 10; $pages = array_chunk($results, $results_per_page); print_r($pages); ?>
Result:
Report an issue