-1

I'm designing the backend of a web with dreamweaver and MySQL. When I send a form, the content is weird (Like Áa(C)) and not show de correct charset. I put the charset utf8 in the header (in the php and html too), and tried with utf8_encode in each POST. But still don't work... anyone knows something? That characters are shown too in the MySQL (and even it's utf8). Thanks a lot.

1 Answers1

0

use

header('Content-Type: text/html; charset=utf-8'); 

in your php file

Manish Jangir
  • 505
  • 3
  • 9