I have a field in my database table MySql with the name 'description', with special accents.
My problem is:
When I make a INSERT INTO
directly using phpMyAdmin , it normally inserts the information into the table, but when using mysql it returns the following error.
This is my sql code:
INSERT INTO caixa_geral_dc (
descrição,
empresa,
valor_c_d,
conta,
categoria,
d_c,
usuario)
VALUES
('GUARDA PROVISÓRIA DE VALORES',
'$nome_cliente[$i]',
'$v_recebido&[$i]',
'7',
'197',
'c',
'$_SERVER[nomeUsuario]')
I await answers.
Thank you