Hello
I have a form that a user insert some input
form accept-charset='UTF-8' action="addcommentcheck.jsp" method="post" id="addcommentid">
...
</form>
and at addcommentcheck.jsp i do
request.setCharacterEncoding("UTF-8");
But when i try to insert it to database the only thing that i insert is ????? When i show to the user the input i can see the correct input but when i insert to database i have the ??? What i am doing wrong?
Thank you very much