tags:

views:

1350

answers:

3

What does it mean when you see things like:

?__utma=1.32168570.1258672608.1258672608.1259628772.2&__utmb=1.4.10.1259628772&

etc in the the url string?

Maybe it's simple, but I'm thinking it's something I'm not aware of because I see it every now and again.

+3  A: 

They are URL parameters, they pass information back to the web server.

protocol://username:password@server:port?parameterList#anchorName

Example:

http://stackoverflow.com:80/page?param1=value1&param2=value2

  • The #anchorName will skip you to a certain part of an HTML page
  • The parameterList portion is also called the query
  • The protocol portion is also called the scheme
  • The username:password part can be ommitted
  • The port will default to 80 if the protocol is HTTP and the port is not specified
  • If you don't specify the protocol in a web browser, it will default to HTTP.
  • You will often want to have a single page do multiple things. This is accomplished by accepting different parameters. These parameters will typically pass information to the server which will modify how the next page is displayed, or how another action is performed on the server
  • Sometimes URL parameters are replaced with nice looking URL paths. This is accomplished with newer web frameworks like ASP .NET MVC, Django, Ruby on Rails, etc...

There is a much more detailed description from what I gave in RFC 3986: Uniform Resource Identifier (URI): Generic Syntax.

Brian R. Bondy
Sorry @Richard I think I may have over generalized what you were asking, but I'll keep my answer here.
Brian R. Bondy
yep, but a good answer anyway :)
Richard
+5  A: 

It is related to google analytics... it's used for their tracking. Although I suspect Brian's answer answers what you were really asking...

John Weldon
Specifically UTM='Urchin Tracking Module'; http://www.google.com/urchin/index.html
martin clayton
Nice... thanks :)
John Weldon
I think I probably over generalized what the OP was asking.
Brian R. Bondy
I love how user generated questions are almost a rorschach test in themselves... :)
John Weldon
+4  A: 

Here's a good link to explain them. They are cookies used by google analytics to track information on your website.

http://www.analyticsexperts.com/google-analytics/information-about-the-utmlinker-and-the-%5F%5Futma-%5F%5Futmb-and-%5F%5Futmc-cookies/

prime_number