More URL encoding
•
The space character
‘ ‘
is replaced by
‘+’
.
–
Why?
•
The
‘+’
character is replaced by
“%2B”
Example:
“foo=6 + 7”
becomes
“foo%3D6+%2B+7”
48