Re: insert utf8 values
I tried that also, it didn't help
Eventually I used:
mysql_connect(localhost,$username,$password);
mysql_set_charset('utf8');
@mysql_select_db($database) or die( "Unable to select database");
$sql = "insert into translation (queue_id, lang_id, subject, text) values ($queue_id, $lang_id, '$subject', '$content')";
$res = mysql_query($sql);
mysql_close();
and it worked fine
Thank you
Subject
Views
Written By
Posted
7024
March 01, 2011 07:28PM
1973
March 02, 2011 10:26PM
Re: insert utf8 values
1838
March 02, 2011 11:43PM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.