<?php $json = range(1, 20); $skip = 10; $take = 5; foreach (array_slice($json, $skip, $take) as $key => $js) { // ... do what is necessary on the data echo "$js\n"; }
You have javascript disabled. You will not be able to edit any code.