i have a requirement where in i have to store hindi text in mysql database, fetch it using php script and display in a webpage. I did the following
Create a database and set it's encoding to utf8 and also the collation to utf8_bin I added a varchar field in the table and set it to accept utf8 text in the charset property.
Then i set about adding data to it. Here i had to copy data from an existing site. The hindi text looks like this -> सूर्योदय:05:30
So i directly copied this text into my database and used php echo(utf8_encode($string)) to display the data. Upon doing so the browser showed me ??????.
However when i inserted the utf equivalent of the text by going to view source in the browser,सूर्योदय translates into सूर्योदय
if i enter and store सूर्योदय in the database it converts perfectly.
So what i want to know is how can i directly store सूर्योदय into my database and fetch it and display in my webpage using PHP.
Also can any one help me understand if there's a script where if i type in सूर्योदय it gives me सूर्योदय.
Solution Found
I wrote the following sample script which worked for me. Hope it helps someone else too
<html>
<head>
<title>Hindi</title></head>
<body>
<?php
include("connection.php");//simple connection setting
$result = mysql_query("SET NAMES utf8");//the main trick
$cmd = "select * from hindi";
$result = mysql_query($cmd);
while($myrow = mysql_fetch_row($result))
{
echo ($myrow[0]);
}
?>
</body>
</html>
The dump for my database storing hindi utf strings is
CREATE TABLE `hindi` (
`data` varchar(1000) character set utf8 collate utf8_bin default NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `hindi` VALUES ('सूर्योदय');
Now my question is, how did it work without specifying "META" or header info. Thanks
