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("<","&lt;",$n);
  $n=str_replace(">","&gt;",$n);
}

Is the $n=mysql_real_escape_string($n); creating this problem?

link|improve this question

Does it happen with all web browsers? We might need to see some of your PHP code which handles the input and output. – hippietrail May 12 '11 at 12:32
The actual problem is that I create a new .php page containing the commet. The page's name is a part of the comment and when the user has a "–" into the comment the page is created but can't be accesed. A user created a page this way and now I can't even delete it from the webserver. It shows in the file mananger, but when I try to rename it , it says that page doesn't exist. Also, if I try to delete it, it will reappear... I don't know why the "–" is transofrmed to that.... – Cristy May 12 '11 at 12:36
1  
Well we need to know if the EN DASH is coming in as UTF-8 or as Latin 1. It could be that the comment is coming in garbled or that it comes in fine but some PHP code then garbles it. – hippietrail May 12 '11 at 12:39
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.