you can use GOOGLE API to do that. its work with all programming labguages (USE SOAP)
http://www.google.com/apis
Main Topics
Browse All TopicsHi BOSs,
I need the script to store first 100 result from google search at a time and store it in text file. The script may be used in ASP, JSP OR PHP. See how many Big guys can help me. U also give me ur links or mail me at himadrish@yahoo.com
With Warm Regards,
Himadrish
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
you can use GOOGLE API to do that. its work with all programming labguages (USE SOAP)
http://www.google.com/apis
Hi dbrunton and afsh,
I understand all of U understand the problem. If I used preference then Google used
cookies and I can see 100 records at a time.
But think if I want to do the same from my php page, then how can I handled it. I will used Fsock open then retrieve the page, but what will be the code.
I have open structure, ASP,PHP,JSP OR CGI any code can solve this problem.
Pls try for this.
Regards,
Himadrish
a PHP script for using Google Api :
http://www.sebastian-bergm
and manual :
http://www.devshed.com/Ser
you need to register google api at google site for own register key.
Himadrish-
Since you can set the start for the entries on each fetch, you can run the fetch 10 times, each time with a higher starting location in the sequence. The GoogleAPI is limited specifically to keep programmers from repackaging Google results on their own webpages. Just ten fetches should solve the problem you're having (though you'll exhaust your daily limit 10 times as fast).
-bcl
with google APIs its impossiple :
maxResults :
Number of results desired per query. The maximum value per query is 10. Note: If you do a query that doesn't have many matches, the actual number of results you get may be smaller than what you request.
this from google APIs refrence :
http://www.google.com/apis
---------
AFShin
Using some Perl:
my $googleSearch = SOAP::Lite -> service("file:googleapi/Go
my $result0 =
$googleSearch -> doGoogleSearch($key, # API license key
$_, # query string
0, # 0-based starting record
10, # max number of results (10)
"false", # autofilter results?
"", # country restriction
"false", # safeSearch?
"", # language restrict
"latin1", # input encoding (ignored)
"latin1"); # output encoding (ignored)
my $result1 =
$googleSearch -> doGoogleSearch($key, # API license key
$_, # query string
10, # 0-based starting record ******* CHANGED
10, # max number of results (10)
"false", # autofilter results?
"", # country restriction
"false", # safeSearch?
"", # language restrict
"latin1", # input encoding (ignored)
"latin1"); # output encoding (ignored)
and so on. Thus with 10 calls to doGoogleSearch (each with maximum number of results set to 10) you can collect 100 results.
Business Accounts
Answer for Membership
by: dbruntonPosted on 2003-08-20 at 01:11:22ID: 9186499
http://www.google.co.nz/pr eferences? hl=en
Set your preferences in Google. See the link above.