I am having issues using hebrew with mysql and PHP, i have already tried this:
the db collation has to be utf8_general_ci
.
the collation of the table with hebrew has to be utf8_general_ci in my php connection script i put
header('Content-Type: text/html; charset=utf-8');
in my xhtml head tag i put after selecting the db in the connection script i put
mysql_query("SET NAMES 'utf8'");
And it is still not working. In phpmyadmin i can see the hebrew characters but when i display them in php all i see is "?????" If anyone could help me that would be great!