vote up 1 vote down star

Hello everyone,

I have a problem when i use json and array. And i need your help.

Here is my code:

while($row = mysql_fetch_assoc($result)){ echo json_encode($row); }

The result is:

{"id":"1","title":"event1","start":"2009-11-10 14:18:15","end":"2009-11-03 14:38:22","allDay":"false","url":null}{"id":"2","title":"event2","start":"2009-11-09 15:41:20","end":"2009-11-10 16:41:25","allDay":"false","url":null}

But i want the result is like this:

[{"id":"1","title":"event1","start":"2009-11-10 14:18:15","end":"2009-11-03 14:38:22","allDay":"false","url":null},{"id":"2","title":"event2","start":"2009-11-09 15:41:20","end":"2009-11-10 16:41:25","allDay":"false","url":null}]

How can i accomplish this? Thanks

flag

3 Answers

vote up 2 vote down check
$arr = array();
while($row = mysql_fetch_assoc($result)) {
    $arr[] = $row; 
}
echo json_encode($arr);
link|flag
YES! It works!! Thanks a lot. – garcon1986 Nov 3 at 15:21
vote up 0 vote down
$myjsons = array();
while($row = mysql_fetch_assoc($result)){ 
    $myjsons[] = json_encode(array($row)); 
}
print_r($myjsons);
link|flag
Doesn't work also. The output is: Array – garcon1986 Nov 3 at 15:19
sorry, it's fixed. – inkedmn Nov 3 at 15:25
@inkadmn Thanks all the same. cheers – garcon1986 Nov 3 at 15:28
vote up -1 vote down

Dirty way :)

echo '[' . json_encode( $row ) . ']'
link|flag
I tried it, but the result would be like this: [[{"id":"1","title":"event1","start":"2009-11-10 14:18:15","end":"2009-11-03 14:38:22","allDay":"false","url":null}]][[{"id":"2","title":"event2","start":"2009-11-09 15:41:20","end":"2009-11-10 16:41:25","allDay":"false","url":null}]] – garcon1986 Nov 3 at 15:15
Sorry. The right answer is from Patrick Allaert – silent Nov 3 at 15:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.