displaying Japanese characters with php from database
displaying Japanese characters with php from database PHPMyAdmin is displaying Japanese characters perfectly with COLLATION =: utf8mb4_unicode_ci but it just displays ???? in the browser. I am using the correct UTF code in the HTML headers like: <meta content='text/html; charset=UTF-8' http-equiv='Content-Type'> <meta charset="UTF-8"> Here are the PHP code snippets: `<?php //Create connection credentials $db_host = 'localhost'; $db_name = 'quizzer'; $db_user = 'root'; $db_pass = ''; $mysqli = new mysqli ($db_host, $db_user, $db_pass, $db_name); if($mysqli->connect_error){ printf("Connect failed: %sn", $mysqli->connect_error); exit(); } //Set question number $number = (int) $_GET['n']; /* * Get total questions */ $query = "SELECT * FROM `questions`"; //Get result $results = $mysqli->query($query) or die($mysqli->error.__LINE__); $total = $results->num_rows; /* * ...