After retrieving from a mysql, how can I make accents appear with PHP, I've mysql enabled so I can write with accents and if I retrieve the info with mysql client I see them, but in the page I can't
Thanks
I am not sure what you mean, but take a look at the following functions in the manual:
$str = <...comes from MYSQL>; $trans = get_html_transition_table(HTMLENTITIES); $original = strtr ($str, $trans);
Does this help?
-S
thanks this helped a lot