Possible Duplicate:
UTF-8 all the way through
I want submit text from text box in a form to a table in MYSQL which in turn show text in the post on website but there is a special quot ‘ in place of this ' which get converted into Â
Please tell how to submit data with simple text without showing these characters
I have already used
urldecode ( string $str ) , str_replace ()
Here is my code
$description = mysql_real_escape_string(htmlspecialchars(utf8_encode($_REQUEST['txtDescription'])));