在 php mysql 应用程序中使用泰米尔语字体

Use tamil fonts in php mysql application

我想在 php mysql 应用程序中使用泰米尔语字体?就默认情况下在输入字段中输入泰米尔语提出一些想法。

最好的 unicode 泰米尔语字体支持遵循 api 脚本,

<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);

非常感谢。

"mysql_query ("设置character_set_results='utf8'"); "
在写入查询之前添加此行将解决问题...而不是特殊的
字符泰米尔字母将保存...

请务必在 html header 中使用字符集 utf8...
一切顺利

Unicode 格式

<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">

header('Content-Type: text/html;charset=UTF-8');