| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/get_more_followers.php |
<?php
if ($f == "get_more_followers") {
$html = '';
if (isset($_GET['user_id']) && isset($_GET['after_last_id'])) {
foreach (Wo_GetFollowers($_GET['user_id'], 'profile', 25, $_GET['after_last_id']) as $wo['UsersList']) {
$html .= Wo_LoadPage('timeline/follow-list');
}
}
$data = array(
'status' => 200,
'html' => $html
);
header("Content-type: application/json");
echo json_encode($data);
exit();
}