How to display Unicode data with PHP

Posted by Srinivas Tamada on Stack Overflow See other posts from Stack Overflow or by Srinivas Tamada
Published on 2010-03-15T11:42:56Z Indexed on 2010/03/15 11:49 UTC
Read the original article Hit count: 264

Filed under:
|
table 'abc' data :

tid    title

  1      ????????????? ?.

  2      ?????? ?????? 


$sql=mysql_query("select title from abd where tid='1'");

$row=mysql_fetch_array($sql);

$title = $row['title'];

echo $title;

OutPut displaying like this:

????????????????

But I want to display

????????????? ?.

© Stack Overflow or respective owner

Related posts about php5

Related posts about php