Displaying 1 result from an estimated 1 matches for "251nial".
2006 Jan 17
4
textarea problem with accentued chars
Hello, I have a problem with accentued characters return from a textarea
I have 3 simple files to show example ( below ).
index.rhml : If I put "?nial" inside the textarea, then submit to
:action => post
post.rhml : wrote
?nial
195
"\303\251nial"
//
params[:comment][:message] return => ?nial
params[:comment][:message][1] return => 195 ! ( 195 is not "?" ,
http://www.asciitable.com/ )
params[:comment][:message].inspect return => "\303\251nial"
and in ddb I store "??nial"
Someo...