4
I have a form that makes an HTTP POST request to update the BD. During the request I noticed that the following message appeared for a field filled with accent in Chrome Dev Tool. For example, the rating is displayed as avalia%E7%E3o
.
Unable to Decode value
Page and browser encoding are ISO-8859-1. PHP receives the accented text from the field as an HTML Numeric Entity, does not interpret correctly, and writes "empty" to the Database.
I have another server with the same settings and sources, and this problem does not occur, that is, evaluation (for example) is recorded correctly in the Database. Why does this problem occur? What could be the cause of my other server with the same browser and fonts working?
Just to better understand, you have a form and when submitting it the received data comes encoded it is this?
– Fernando
Your form already has application/x-www-form-urlencoded ?
– Raul Sena Ferreira