What to set to write hebrew in MySQL with PHP

1 Answer

0 votes
$con = new PDO("mysql:dbname=abc_db;host=localhost", "user_root", "password_12345");
$con->exec("SET NAMES 'utf8'");

 



answered Nov 16, 2020 by avibootz
...