Hello
I m having great problem with indic(indian language) convert. for example
Say I wrote something by google indic for bengali
Now I copy this text and paste into textbox of my web form
the after submitting it not showing desire result. my code is
$tvalue=$_POST['textfield'];
echo ord($tvalue).' = ';
echo chr(ord($tvalue));
but if I use
echo $tvalue
it correctly show the text I submitted.
Please help me what is the problem
Thanx all