ikisi de: utf8mb4_unicode_ci
Bu doğru bir seçenek, bunu değiştirmeyin.
mysql_query("set names 'utf8'"); <html>
<head>
<title>sayfa başlığı</title>
<meta charset="UTF-8" />
</head>
<body>
<?php mysql_query("set names 'utf8'");
$sql = "INSERT * FROM ..... ";
mysql_query($sql); ?>
</body>
</html>
Eğer bir bağlantı dosyası kullanıyorsan
$conn->set_charset("utf8");Eklemen yeterlidir.