I am using CodeIgniter. In my controller I am decoding a JSON response and simply displaying the values upon loading a view. I am simply displaying all my content from a JSON array (no database used). It is completely an array from which i am rendering the data.I want to autoload the content whilst scrolling.
Example:
$resultjson = $this->curl->simple_get("http://www.test.com/api/records.php?ak=XXXXXXXX&ts=XXXXXXXX&sig=XXXXXXXX&postano=XXXXXX&count=100");
How can I fetch 10 records when autoloaded? Just like the http://pinterest.com/ mechanism. How can I achieve this?
Are there any plugins? Does CodeIgniter already have a solution for it such that I can use classes or libraries?