When I request my table that contains japanese symbols set in utf8_unicode_ci, they show instead question marks. How can I make it show the Japanese symbols properly ?
PHP :
<?php
$query = " SELECT * FROM `kana` WHERE 1 ";
if ($query_run = mysql_query($query)) {
while ($query_row = mysql_fetch_assoc($query_run)) {
$id = $query_row['id'];
$hiragana = $query_row['hiragana'];
$katakana = $query_row['katakana'];
$romaji = $query_row['romaji'];
$type = $query_row['type'];
echo "
<table class='kana_table'>
<tr>
<td>
$id
</td>
<td>
$hiragana
</td>
<td>
$katakana
</td>
<td>
$romaji
</td>
<td>
$type
</td>
</tr>
</table>
";
}
} else {
echo mysql_error();
}
?>