I have a website that allows users to post comments. I save comments using php, but if the user inserts a – it gets transformed into – .
What should I do to allow symbols like – to be shown correctly?
Page content type:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
I use this function to filter the user input:
function sql_protect(&$n){
$n=stripslashes($n);
$n=mysql_real_escape_string($n);
//<script> protection
$n=str_replace("<","<",$n);
$n=str_replace(">",">",$n);
}
Is the $n=mysql_real_escape_string($n); creating this problem?