| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/load-my-blogs.php |
<?php
if ($f == "load-my-blogs" && $wo['loggedin'] === true) {
$html = '';
$blogs = Wo_GetMyBlogs($wo['user']['id'], $_GET['offset']);
if (count($blogs) > 0) {
foreach ($blogs as $key => $wo['blog']) {
$html .= Wo_LoadPage('blog/includes/card-lg-list');
}
$data = array(
'status' => 200,
'html' => $html
);
} else {
$data = array(
'status' => 404
);
}
header("Content-type: application/json");
echo json_encode($data);
exit();
}