Good afternoon, I have a procedure in MYSQL that returns processing information.
ELSE
IF(linhas_banco_in_p <> 0) THEN
SET msg = 'ESSA CONTA E AGÊNCIA JÁ EXISTE NESSE BANCO, VERIFIQUE AS INFORMAÇÕES E TENTE NOVAMENTE';
SELECT msg;
ROLLBACK;
ELSE
INSERT INTO banco (
nome_banco,
This message returns and is displayed via Javascript on the registration screen, within a modal. The problem is that the characters are coming this way:
<metacharset="utf-8" />
I tried using the charset = 'utf-8' function inside the JavaScript tag, without success. How do I fix it?
Thank you