Code: Select all
ACREDITACI¢Nwhat should i do?.. this is the first tiemit happens to me.. and can not find the way out
Thanks in advance
Moderator: General Moderators
Code: Select all
ACREDITACI¢Nthat little cent symbol coming from your database really is a cent symbol. The htmlentities() function translates it into ¢, I believe.Next_Gate wrote:but i need it to be displayed as ACREDITACIÓNCode: Select all
ACREDITACI¢N
Code: Select all
<?php
echo htmlentities("ACREDITACIÓN");
?>There's something called charsets that determine how numbers get translated into characters. It's along the lines of fonts, but not quite the same. (Obviously, I don't know much about it)Next_Gate wrote:Well thats funny.. cause i use the SQL SERVER DATA ANALYZER and the data is ok..it says correctly ACREDITACION is when i show (echo) the $FETCH['FIELD_NAME'] when i get the ACREDITACI¢N..