I am querying a search engine and returning the results .I wish to display the results once it gets fetched without waiting for the next one to be fetched E.g www.digpagerank.com When you enter a url and click on submit ,it displays all the results as "Talking with G" After that once the results are fetched it displays it dynamically How this can be done ? Edit/Delete Message
erm - they do this because they sequentially query via ajax all the serps they know of. this means each query returns one result only. if you query a search engine, it wont return results 1 by 1, it will return say 25 per page. you can write a script that can fetch multiple pages and parse them so you can get similar effect - but it all depends on what you are querying ...