Skip to main content
fix a typo
Source Link
ChrisF
  • 39k
  • 11
  • 129
  • 169

By default, older versions of IE (<=8) will submit form data in Latin-1 encoding if possible. By including a character that can't be expressed in Latin-1, IE is forced to use UTF-8 encoding for its form submissions, which simplifies various backend processes, for example database persistancepersistence.

If the parameter was instead utf=trueutf8=true then this wouldn't trigger the UTF-8 encoding in these browsers.

By default, older versions of IE (<=8) will submit form data in Latin-1 encoding if possible. By including a character that can't be expressed in Latin-1, IE is forced to use UTF-8 encoding for its form submissions, which simplifies various backend processes, for example database persistance.

If the parameter was instead utf=true then this wouldn't trigger the UTF-8 encoding in these browsers.

By default, older versions of IE (<=8) will submit form data in Latin-1 encoding if possible. By including a character that can't be expressed in Latin-1, IE is forced to use UTF-8 encoding for its form submissions, which simplifies various backend processes, for example database persistence.

If the parameter was instead utf8=true then this wouldn't trigger the UTF-8 encoding in these browsers.

Source Link
Gareth
  • 5.1k
  • 1
  • 20
  • 14

By default, older versions of IE (<=8) will submit form data in Latin-1 encoding if possible. By including a character that can't be expressed in Latin-1, IE is forced to use UTF-8 encoding for its form submissions, which simplifies various backend processes, for example database persistance.

If the parameter was instead utf=true then this wouldn't trigger the UTF-8 encoding in these browsers.