I am trying to insert records containing Hebrew characters from PHP into a MySQL table.
Both the schema and the table are set with utf8 character set in MySQL. The Web-site is set with a charset=UTF8.
Displaying the query on the web-page renders Hebrew correctly.
However, once inserted into the MySQL table, the Hebrew characters are not stored correctly, rather as gibrish. Example:
×בו ×¡× ×ן
Tried to apply utf8_encode and mb_convert_encoding on the query string - to no avail.
What am I missing? Thanks!