changeset 74 | 43c31dc98305 |
parent 71 | e1b918eaf69a |
child 82 | c255196bc447 |
73:8a239565e9b3 | 74:43c31dc98305 |
---|---|
56 users.active |
56 users.active |
57 ORDER BY |
57 ORDER BY |
58 users.fullname"; |
58 users.fullname"; |
59 |
59 |
60 // Execute the huge query. |
60 // Execute the huge query. |
61 $db->setLimit($rowstart, $rowamount); |
61 $db->setLimit($rowamount, $rowstart); |
62 $result = $db->query($sqlq); |
62 $result = $db->query($sqlq); |
63 $ret = array(); |
63 $ret = array(); |
64 $retcount = 0; |
64 $retcount = 0; |
65 while ($r = $result->fetchRow()) |
65 while ($r = $result->fetchRow()) |
66 { |
66 { |