Correcting incorrect information (#835)

Thanks for the improvement. Hope you liked the lesson.
This commit is contained in:
Mike Robinson 2020-06-19 09:00:43 -06:00 committed by GitHub
parent 1cbaade9ab
commit 219aad0bbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,9 +4,13 @@
Also other encodings are used. Also other encodings are used.
=== URL encoding
URL encoding is used a lot when sending form data and request parameters to the server. Since spaces are not allowed in a URL, this is then replaced by %20. Similar replacements are made for other characters.
=== HTML encoding === HTML encoding
HTML encoding is used a lot when sending form data and request parameters to the server. Since spaces are not allowed in a URL, this is then replaced by %20. HTML encoding ensures that text is displayed as-is in the browser and not interpreted by the browser as HTML.
=== UUEncode === UUEncode