I want to get tamil language input text values in server side. wt I did was
<style type="text/css">
@font-face {
font-family: FontFamilyName;
font-weight: bold;
src: url('TAMIL.TTF');
}
.tamil {
font-family:"FontFamilyName";
}
and this HTML form
<form action="aa" >
<input type="text" class="tamil" name="ss">
<input type="submit" value="ss">
</form>
when typing it takes tamil texts which is I want but when take those values in the server side its converting to english letters.
Hw can I solve this issue. thanks :)
Check your html files' text encoding, and make sure your server supports tamil。 maybe you should convert everything to utf-8~ best wishes~