Forum Moderators: coopster
$title = htmlentities($title, ENT_QUOTES);
If anyone has any ideas on strengthening this up, it would be appreciated. I have already tried using str_replace, but the characters are still ignored?
Thanks.
Does it work if you do
$title=htmlentities($title,ENT_QUOTES,'UTF-8');
Also check the details in php.net
[php.net...]