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.

Sometimes the spaces get url encoded to + sign, some other times to %20, what is the difference and why and why not this happens?

share|improve this question

2 Answers

up vote 98 down vote accepted

+ means a space only in application/x-www-form-encoded content, such as the query part of a URL:

http://www.example.com/path/foo+bar/path?query+name=query+value

In this URL, the parameter name is query name with a space and the value is query value with a space, but the folder name in the path is literally foo+bar, not foo bar.

%20 is a valid way to encode a space in either of these contexts. So if you need to URL-encode a string for inclusion in part of a URL, it is always safe to replace spaces with %20 and pluses with %2B. This is what eg. encodeURIComponent() does in JavaScript. Unfortunately it's not what urlencode does in PHP (rawurlencode is safer).

share|improve this answer
really I am confused, My Question is, when the browser do the first form, and when do the second fomr? – Muhammad Hewedy Apr 20 '10 at 21:11
5  
The browser will create a query+name=query+value parameter from a form with <input name="query name" value="query value">. It will not create query%20name from a form, but it's totally safe to use that instead, eg. if you're putting a form submission together youself for an XMLHttpRequest. If you have a URL with a space in it, like <a href="http://www.example.com/foo bar/">, then the browser will encode that to %20 for you to fix your mistake, but that's probably best not relied on. – bobince Apr 20 '10 at 21:22
1  
what function on javascript make foo bar to foo+bar ? – Sisir Jan 4 '12 at 11:08
4  
@Sisir: there isn't a JS function that will do URL-form-encoding. You can naturally do encodeURIComponent(s).replace(/%20/g, '+') if you really need + – bobince Jan 4 '12 at 13:55

http://www.example.com/some/path/to/resource?param1=value1

The part before the question mark must use % encoding (so %20 for space), after the question mark you can use either %20 or + for a space. If you need an actual + after the question mark use %2B.

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.