Hi
How to Print Marathi unicode?
$rs = mysql_query("SELECT node.nid AS nid, node.title AS node_title, GREATEST(node.changed, node_comment_statistics.last_comment_timestamp) AS node_comment_statistics_last_updated FROM node node INNER JOIN node_comment_statistics node_comment_statistics ON node.nid = node_comment_statistics.nid WHERE (node.type in ('book')) AND (node.status <> 0) ORDER BY node_comment_statistics_last_updated DESC");
$i=0;
while($obj = mysql_fetch_object($rs))
{
$arr[] = $obj->node_title;
html_entity_decode($arr[0]);
}
--
Cheers
!!!,