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 generate .json file format in php file. for that i write following code.

<?php
$res=array();
$response = array();
$con=mysql_connect("localhost","root","");
if(!$con){
die("connection failed".mysql_error());
}
$db=mysql_select_db("companies",$con);
if(!$db){
die("connection failed".mysql_error());
}
$result = mysql_query("SELECT * FROM companies");

while($row = mysql_fetch_array($result))  {
 $res[]=array('name'=> $row['name'],'id' => $row['company_id']+1);
}
mysql_close($con);
$response['company'] = $res;
echo (json_encode($response));
?> 

it gives output like this:

{"company":[{"name":"abc","id":2},{"name":"cde","id":3}]} 

but i want output like this:

[{"company":{"name":"abc","id":1}},{"company":{"name":"cde","id":2}}]

how should i change my php file?

share|improve this question
for what purpose you want the above output?? – jogesh_pi Jan 21 '12 at 7:50

1 Answer

up vote 0 down vote accepted

You need one more associative array:

while($row = mysql_fetch_array($result))  {
    $res[] = array(
        'company' => array('name'=> $row['name'],'id' => $row['company_id']+1) 
    );
}

And now all you have to send is json encoded $res.

share|improve this answer
Thanx for answer, when i look "localhost/project/companies.json"; in my browser it show the data. but i want to hide the data. can i do it? if yes, how ? – Lahiru Jan 28 '12 at 14:38
if you are using this data in javascript and getting it by AJAX request, then you can not hide it. – dev-null-dweller Jan 28 '12 at 15:08
Thanx. no I'm try to access these data from Ruby file. can i hide these data? – Lahiru Jan 29 '12 at 15:06

Your Answer

 
discard

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

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