0
Good afternoon, I have a database 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:
<meta charset="utf-8" />
I tried using charset='utf-8' function inside the Javascript tag, without success. How do I fix?
Thank you
What server side programming language you are using in your application?
– ElvisP