what is a GUID?
Unique ID as in non-duplicated. visitors are given a unique tracking number (no duplications)
Main Topics
Browse All TopicsI'm running a marketing campaign and want to track the effectiveness of the campaign from the time a user clicks on a AdWord through a unique visitor's registration (and eventual purchases). Google recommends setting up a ?referrer=GoogleAdwordMay2
Please advise if the following makes sense/advise better way/address questions:
1. set up link in adwords to the above http://www......com/referr
2. On receiving page, grab referrer and place that into a cookie along with the date of the first visit, the number of visits (page downloads) and the unique cookie ID?
3. If the user returns to the page, the cookie updates the visit by #1
4. If the user registers, the database will also grab the information in the cookie (referrer, date of the first visit, and the number of visits)
Other questions
- how do I add a unique cookie ID so it can not be duplicated?
- how can I capture the cookie data before the user registers (audit Google's data and track conversion)?
- is there any other suggestions you might have?
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.
Hi wdeley.
Each of your questions is fairly simple to answer individually, however, you're talking about creating a fully-fledged user-analytics application here. There are many ways to go about this, all of which require a server-side technology such as PHP, ASP or Coldfusion.
Are you using any of these? Or better still, do you currently have some sort of traffic analyser installed on the site?
3MAN8
I've recently written an application that does what you require, but I can assure you that describing it is not within the scope of this forum.
However, with a little tweaking here and there, the StatCounteX community project should be able to do what you need.
Check the following URL:
http://www.2enetworx.com/d
It's not ideal in that it won't track individual users as such (it uses IP addresses), but using your Cookie idea to create a User Id would easilly fix that. The code uses ASP and a choice of databases, including SQL.
Hope this helps,
3MAN8
Business Accounts
Answer for Membership
by: netuser1976Posted on 2003-05-20 at 16:21:25ID: 8554360
If you want to add a unique Cookie ID, you could generate a GUID and make this as the Cookie ID. I dont clearly understand your basic question..