Browse code

includes/mysqli_functions.php: add option for SET NAMES of UTF8MB4 with a note - this may especially help with old-ish server setups

Clarissa Walker authored on 2026/09/19 15:24:06
Showing 1 changed files
... ...
@@ -20,6 +20,9 @@ function dbconnect($dbhost, $dbuser, $dbpass, $dbname ) {
20 20
 	}
21 21
 	//mysqli_query($mysql_access, "SET SESSION sql_mode = 'NO_ZERO_IN_DATE,NO_ZERO_DATE,NO_ENGINE_SUBSTITUTION'");
22 22
 	mysqli_query($mysqli_access, "SET SESSION sql_mode = 'NO_ENGINE_SUBSTITUTION'");
23
+
24
+	// comment UTF8 and uncomment UTF8MB4 if needed - especially when converted to Mod
25
+    //mysqli_query($mysqli_access, "SET NAMES UTF8MB4;");
23 26
     mysqli_query($mysqli_access, "SET NAMES UTF8;");
24 27
 	return $mysqli_access;
25 28
 }