I have columns that were written to the sql server with a capital letter, when I get it in php, I need them to recognize both lowercase and uppercase.
For example:
select * from rzv_aluno
records:
AL_NOME, AL_EMPRESA... etc
In php I can only see the records if I point
$r->AL_NOME
I wish there was no difference between
$r->AL_NOME e $r->al_nome