Input

suggest change
$string = $_REQUEST['user_comment'];
if (!mb_check_encoding($string, 'UTF-8')) {
    // the string is not UTF-8, so re-encode it.
    $actualEncoding = mb_detect_encoding($string);
    $string = mb_convert_encoding($string, 'UTF-8', $actualEncoding);
}
<form action="somepage.php" accept-charset="UTF-8">

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents