Skip to content

Instantly share code, notes, and snippets.

@ravikiranj
Last active September 26, 2015 07:07
Show Gist options
  • Select an option

  • Save ravikiranj/1058793 to your computer and use it in GitHub Desktop.

Select an option

Save ravikiranj/1058793 to your computer and use it in GitHub Desktop.
infinite_scroll_final_touch
<?php
function init(){
$offset = 0;
$xhr = false;
if(!empty($_GET['offset'])){
$offset = $_GET['offset'];
$xhr = true;
}
$limit = 15;
$data = getRSSFeedItems($limit, $offset);
$markup = displayHTML($data, $xhr);
echo $markup;
}
//Call init
init();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment