Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

http://www.example.com?foo

What's the term for the foo part of the URL?

share|improve this question

5 Answers

up vote 28 down vote accepted

Its the query, or sometimes the query string.

To pinch a useful diagram from the URI RFC:

     foo://example.com:8042/over/there?name=ferret#nose
     \_/   \______________/\_________/ \_________/ \__/
      |           |            |            |        |
   scheme     authority       path        query   fragment
share|improve this answer
This is beautiful! – Emanuil Rusev Oct 24 '10 at 10:00
3  
Nice ASCII drawing :) – Eran Galperin Oct 24 '10 at 10:02
+1. Beautiful drawing. – Noufal Ibrahim Dec 8 '10 at 7:46

It's called "query string" as you can see in wikipedia.

share|improve this answer

The 'foo' only is called String Parameters of the URL Query

share|improve this answer

Depends on the technology you use. Usually its called name value pair. Query string refers to the whole string after ? sign. Then depending on technology used that query string is parsed and normally appears as the dictionary. For example, http://www.example.com?foo=bar&foo1=bar1: Request["foo"] yields "bar" Request["foo1"] yields "bar1" for asp or $_GET["foo"] -> "bar" for php and so on.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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