- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
function get_users(){
$limit = 5;
$offset = 0;// $limit * intval($_POST["offset"]);
$ids = mysql_escape_string($_POST['ids']);
$res = mysql_query("SELECT * from users where id not in ($ids) limit 6 offset $offset");
$i = 0;
if($res){
while ($user = mysql_fetch_object($res)) {
$i++;
if($i == 6){
$i = 5;
$more = 'yes';
continue;
}
$users['i' . $i] = $user;
}
$data = array("status" => "ok", "users" => $users, "count" => $i, 'more' => $more ? $more : "0");
echo json_encode($data, JSON_UNESCAPED_UNICODE);
}
Пагинация??? Давайте просто пришлём id тех, кого не нужно возвращать
Комментарии (0) RSS
Добавить комментарий