Hey, am i able to use scar like send a packet to google. Example:
Search from google using a search word: "villavu"
Without scar opening the whole Browser but still making the search :S
Did you guys understand what i meant : /
~Home
Hey, am i able to use scar like send a packet to google. Example:
Search from google using a search word: "villavu"
Without scar opening the whole Browser but still making the search :S
Did you guys understand what i meant : /
~Home
i'm new, but I've got some code:
SCAR Code:program Home;
var
base_uri, content, query, uri: String;
begin
base_uri := 'http://www.google.co.uk//search?q=';
query := 'villavu';
uri := base_uri + query + '&btnG=Google+Search';
content := GetPage(uri);
if content = '' then
begin
WriteLn('connection problem of some sort');
end else
begin
WriteLn(content);
end;
end.
that just spits out the HTML at the moment, is there anything particular that you'd like to know how to do?
thanks in advance,
void_hatred
Last edited by void_hatred; 02-15-2010 at 10:49 AM.
hey again, well there is a problem
if you look at the source, you will not see any HTML for the search results, but if you inspect them via firebug you can see the HTML for the results (span#search), I'll still look into it though, I'm guessing they're either using dynamic content or an iframe to do so.
hope I can help,
void_hatred
Last edited by void_hatred; 02-15-2010 at 11:00 AM.
Hahaha Home this is for RichSearcher isn't it
There are currently 1 users browsing this thread. (0 members and 1 guests)