Im developing a small web application in PHP. I want, user or admin to type tamil language in text box or textarea and save it in MySql. Please give me some easiest method to do so.
Asked
Active
Viewed 2,193 times
2 Answers
0
Vinoth, to allow a user to type in tamil on your website you might want to take a look at the tamilsg api
Usage: Copy & paste the following anywhere in the body tag of your php website and replace textareaid with the appropriate textarea id.
<script type="text/javascript">
var poplo =new Array("textareaid");
ENABLED_TIWEB = "http://api.tamilsg.com/data/lookuptable.js";
var fileref = document.createElement('script');
fileref.src = "http://api.tamilsg.com/hplus.js";
document.documentElement.appendChild(fileref);
</script>

siva
- 1
- 1