From 0714af841c3cea33b3ad993112873b84ee8dffdf Mon Sep 17 00:00:00 2001 From: Tim Krehan Date: Mon, 3 Jun 2019 16:46:59 +0200 Subject: [PATCH] fix it, to use definitly utf8*MB4* --- php/connect.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/php/connect.php b/php/connect.php index 4260e5d..5f6f95d 100644 --- a/php/connect.php +++ b/php/connect.php @@ -6,7 +6,7 @@ $passwd = $CONFIG['passwd'], $database = $CONFIG['database'] ); - $mysqli->set_charset("utf8"); + $mysqli->set_charset("utf8mb4"); if (!is_null($mysqli->connect_error)) { header("Location: /error/DBConnFailed");