Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$result=mysql_query("select * from pointtable where Latitude between '$latitude1' and '$latitude2' and Longitude between '$longitude1' and '$longitude2' ");

$posts=array();

if(mysql_num_rows($result))
{
  while($post = mysql_fetch_assoc($result))
  {
    $posts[]=array('post'=>$post);
  }
}

header('Content-type: application/json');
echo json_encode(array('posts'=> $posts));

above code is of creating json response..i have one form from which by POST method i am getting parameter information..result is fine but it opens in diagloue box..i want to type this json response in a page...what do i do?..

{"posts":[{"post":{"id":"1","LayarType":"college","Attribution":"Daiict","Title":"CEP Daiict","Latitude":"23.3400000000","Longitude...}

i donot want this starting...{"posts":"post'}..want to start it from {id:1...} what do i change?...

share|improve this question
Try to use content type as text/plain – Vikram May 24 '11 at 3:20
hey man ...it worked....thank u so much – alpesh May 24 '11 at 3:41

1 Answer

try

while($post = mysql_fetch_assoc($result))
  {
    $posts[]=$post;
  }
header('Content-type: text/plain');
echo json_encode($posts);
share|improve this answer

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.