Hello,
I have a question.
How could I get the data from a google search response? I.e.:Results 1 - 100 of about 230,533,709 for blogs. (0.25 seconds)
I want to get the value 230,533,709.
I use php to get the html response from the url. I.e.: http://blogsearch.google.com/blogsearch?hl=en&ie=UTF-8&q=blogs&btnG=Search+Blogs
I use ajax to get the code from php:
$.ajax({
 url: "urlToPhp",
 type: "GET",
 dataType: "html",
 data: $('#form').serialize(),
 beforeSend: function(){}, 
 success: function(html) {
           ->what to do with html to get the value 230,533,709???
$('#results').html(test).show('slow');
}
});
Please help. I don't know how to do this. Regards!