Is it possible to detect if my visitors are coming to my website via a Google Adwords Ad?

It would like to change the telephone number for those users only, that way I can measure the success of my adwords campaign with the number of calls.

link|improve this question
1  
You can do that on the server side by looking at HTTP_REFERER, or better yet, make the link in the Adwords ad have a parameter that you catch on the server. – Jonathan M Sep 29 '11 at 18:33
feedback

migrated from stackoverflow.com Sep 30 '11 at 14:49

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 3 down vote accepted

You can use the special utm_ query string parameters mentioned here: http://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=156114

Then switch your phone number out based on (for example) utm_campaign

If you use the auto tagging feature (on by default) the parameter to look for is gclid: http://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=55596

link|improve this answer
feedback

On the server you need to grab the value of "HTTP_REFERER"

Also, Google Analytics should be able to do this for you, out of the box.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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