I have an array
http://www.postano.com/api/posts.php?ak=XXXX&ts=XXXXX&sig=XXXXX&postano=12345&start=0&count=20
I will be fetch first 20 records initially. Here is the class
class social extends CI_Controller{
function data()
{
$start = $k;
$resultjson = $this->curl->simple_get("http://www.postano.com/api/posts.php?ak=XXXXX&ts=XXXXX&sig=XXXXX&postano=12345&start=$k&count=20");
$resultant_data = json_decode($resultjson,true);
foreach ($resultant_data as $key => $value)
{
//print_r($value);
$this->load->view('feeds',$value);
}
}
}
Here feeds is my view.
How can i fetch next 20 records say start or $k = 20 so that I can display the results from 0-20 then 21-40 and so on...
I am trying to implement an autoload or loadmore functionality. I am not using model(database) the only source is json response


startandcountones. So you might want to change the URL into something likehttp://www.postano.com/api/posts.php?ak=XXXX&ts=XXXXX&sig=XXXXX&postano=12345&start=21&count=20to get the next 20 values. – Havelock Dec 14 '12 at 12:29