tags:

views:

25

answers:

1

When I retrieve my facebook status through facebook API, using status.get, the informations comes in the form of

[
  {
    "message": "Does anyone here knows how to disappear and reappear again after a few months??",
    "time": 1282146230,
    "status_id": 00000000000000,
    "source": 2915120374,
    "uid": 000000000
  },
  {
    "message": "Blah blah and blah",
    "time": 1282073572,
    "status_id": 00000000000000,
    "source": 2915120374,
    "uid": 000000000
  }
]

I want to format the information using css and display the updates on my blog. How do I extract the info from the above retrieved format so that I can use it on my php page and use css to style the updates??

A: 

This is called JSON format. If you scroll to the bottom on the JSON site you will find a huge list of available libraries for pretty much every language.

serg
Thanks. That answers my doubt!! :)
ptamzz

related questions