0
When I insert some information in Mysql through the form in my system is saved all wrong in the BD, the characters ç, `Uga everything, but insert manually in the right phpmyadmin. In HTML I put the UTF-8 meta charset tag and in php ini UTF-8 charset
To read the BD’s documents it’s all right, not the problem. Just to insert.
Technical Solutions
The following is saved
Soluã§Ãµes Tà cnica
Thanks for the help
Thanks for the help, when I put this code gave error in the page. I put the Header (No error, but nothing changed :'( )
– user3573575
The code you entered at the end of the page to validate the database right? Strange always worked on me, what mistake appears?
– Ana
is it this way ? <? php

$conexao = mysqli_connect('localhost', 'root', '', 'pedidos');

mysqli_query("SET NAMES 'utf8'");
mysqli_query('SET character_set_connection=utf8');
mysqli_query('SET charecter_set_client=utf8');
mysqli_query('SET charecter_set_results=utf8');

?>
– user3573575
Where have you
mysqli_query
you forgot to put $connection, in this case it stays like this in your codemysqli_query($conexao,"SET NAMES 'utf8');
mysqli_query($conexao,'SET character_set_connection=utf8');
etc.– Ana