I'm making a form, and when I write the information with special characters, it records good ... only that when I retrieve the information it comes encoded ... I've already used it, utf8_encode / decode and nothing I do not know if it's in php or in the bank that I have to move ... detail, I have no autonomy to move directly with the bank MSSql ...
A brief example:
JOHN PATIENCE
When I use: $NOME = utf8_encode($row['NOME']);
- > It brings the following: "JO? THE PATIENCE"
When I use: $NOME = utf8_decode($row['NOME']);
- > It brings the following: "JO? THE PACI? NCIA"
When I use: $NOME = ['NOME'];
- > It brings the following: "JO? THE PATIENCE"
I do not know if it's with DB or programming that I move ... Thank you in advance!