Answer the question
In order to leave comments, you need to log in
How to set up php + mariadb encoding properly?
Good afternoon. I set up a connection to the database via php (the last three lines are experiments with stackoverflow that do not help)
function __construct($host=HOST,$user=USER,$pass=PASS,$db=DATABASE){
$this->conn = new mysqli($host, $user, $pass, $db);
$this->conn->set_charset('utf8');
//$this->conn->query('SET NAMES utf8 COLLATE utf8_unicode_ci');
//$this->conn->query('SET character_set_results utf8');
//$this->conn->query("SET SESSION collation_connection = 'utf8_general_ci'");
}
Variable_name Value
character_set_client utf8mb4
character_set_connection utf8mb4
character_set_database utf8mb4
character_set_filesystem binary
character_set_results utf8mb4
character_set_server latin1
character_set_system utf8
character_sets_dir /usr/share/mysql/charsets/
## UTF 8 Settings
init-connect=\'SET NAMES utf8\'
collation_server=utf8_unicode_ci
character_set_server=utf8
skip-character-set-client-handshake
character_sets-dir="C:/xampp/mysql/share/charsets"
Answer the question
In order to leave comments, you need to log in
Actually, you need to execute the correct CREATE DATABASE
AND CREATE TABLE
With the charset you need.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question