- add new line after each valid json line
- export table row as single json object
function uexport_all(&$a) {
uexport_account($a);
+ echo "\n";
$r = q("SELECT count(*) as `total` FROM `item` WHERE `uid` = %d ",
intval(local_user())
intval($x),
intval(500)
);
- if(count($r)) {
+ /*if(count($r)) {
foreach($r as $rr)
foreach($rr as $k => $v)
$item[][$k] = $v;
- }
+ }*/
- $output = array('item' => $item);
- echo json_encode($output);
+ $output = array('item' => $r);
+ echo json_encode($output)."\n";
}
}
\ No newline at end of file