vote up 0 vote down star
1

When I search for something such as "rearrange table columns in asp.net" on Google, and click the link to Wrox's forum site, the site greets me with a message such as "Your Google search for 'rearrange table columns in asp.net' brought you to Wrox Forum...".

How does a site know what query I typed into Google? And how could I add such an ablity to my site?

flag

4 Answers

vote up 11 vote down check

It is parsing your query from the query parameters in the HTTP_REFERER server variable, which contains the URL you're coming from and is provided in your HTTP request.

link|flag
1  
+1 for proper spelling. 3 R's, not 4! – Jim Lewis Aug 28 at 16:57
vote up 1 vote down

Like these guys are suggesting, it's the HTTP_REFERER header variable. The query is in the "q" key in the URL. So if you want to parse that, you can just sort out the querystring and URL decode the "q" variable.

link|flag
vote up 1 vote down

It looks at the referrer header. Here is some fairly basic PHP code to do it.

link|flag
vote up 6 vote down

It uses a header known as the "HTTP referrer". See http://en.wikipedia.org/wiki/HTTP%5Freferrer

To use it in your site, you would need some kind of dynamic page generation, such as ASP / ASP.NET, PHP, or Perl. For example in Perl, you could do something like:

if ($ENV{HTTP_REFERER} =~ /google.com\?.+&q=(.+?)&/)
    print "Your google search of $1 brought you to this site";

WARNING: The code above is only an example and may not be correct or secure!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.