Since I was unable to find a solution over stack-overflow and on the net I am posting this question:
I have a php page that contains the following:
<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=ISO-8859-8">
<META HTTP-EQUIV="Content-language" CONTENT="he">
and a php function that gets Hebrew chars and displays it on the above php page. The mySql DB is defined as utf-general-ci. Also the PDO connection is set as follow:
$conn = new PDO("mysql:host=$servername;dbname=$dbname;charset=utf8", $username, $password);
The problem is that the php page displayed html Hebrew chars but regarding the DB Hebrew values - it displays them as question marks inside a triangle...
Any body got any idea what is wrong...? Thanks.