| Current Path : /home/users/unlimited/www/facebook.codeskitter.site/xhr/ |
| Current File : /home/users/unlimited/www/facebook.codeskitter.site/xhr/update_sidebar_groups.php |
<?php
if ($f == 'update_sidebar_groups') {
$html = '';
foreach (Wo_GroupSug(5) as $wo['GroupList']) {
$html .= Wo_LoadPage('sidebar/sidebar-group-list');
}
$data = array(
'status' => 200,
'html' => $html
);
header("Content-type: application/json");
echo json_encode($data);
exit();
}