Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to convert my result array to json format in php... Here is my code

$row = mysql_fetch_array($result)

Now i want to convert $row to json format... I want to pass the json data to autocomplete plugin of jquery....

share|improve this question
Hai! (This means "Yes" in Japanese) :P – Alix Axel Jan 23 '10 at 5:25

1 Answer

up vote 3 down vote accepted

json_encode is available in php > 5.2.0:

echo json_encode($row);

share|improve this answer
@jspcal i ll give a try – user213559 Jan 23 '10 at 5:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.