Reputation: 3653
What ASCII characters are not allowed in HTTP requests (particularly via POST and application/x-www-form-urlencoded
)? (one is '+')
Upvotes: 1
Views: 3195
Reputation: 76
If the form is encoded with application/x-www-url-encoded, which is the default for HTML forms, the only characters you can definitely use are:
<form method="post" enctype="multipart/form-data">
Upvotes: 6