0

I send to my sever this POST petition: name=pepito&friends=pep+mar

And I notice what arrives is name=pepito&friends=pep mar

Why sum symbol disappears? Than you

Mario
  • 1,841
  • 4
  • 16
  • 23

1 Answers1

1

A + sign is one way to represent spaces in URLs. The other would be %20. There has been a question describing this: When to encode space to plus (+) or %20?

If you want to send a plus, you have to properly encode it with %2B.

Read up on allowed characters in URLs and URLEncode functions.

Community
  • 1
  • 1
csupnig
  • 3,327
  • 1
  • 24
  • 22