Hi guys,
I'm using this sql sentence:
select CONVERT(binary(5),field1)'field1' from table1
field2=0
group by CONVERT(binary(5),field1)
order by
CONVERT(binary(5),field1)
And I Got this result on php if I open page on firefox:
F�R�E�D�_�0�1���������������������������
If I open page on Internet Explorer I got the correct one;
FRED
There is any function on php that remove this invalid characters ?
Thanks.
Fred