How to solve wrong spreadsheet export xml

0

I have a form that receives some registration and is transmitted to another page via ajax that does the insertion in the database. The problem is that at the time of receiving, if I do not use utf8-decode on the variable where it has accent will lose formatting inside the database. So far so good, the same problem begins at the time of exporting this data by phpmyadmin. Whenever I try to export it it loses the formatting and I did not find any combination that works.

    
asked by anonymous 08.08.2017 / 19:38

1 answer

1

Solution. The solution found was to decode everything using UTF8-decode when inserting the data into the database and at the time of export choose iso-8859-1 for data standard.

    
08.08.2017 / 20:18