does anyone know the Collation which will allow me to display foreign keys such as áé like that without displaying them as ?
.
how I'm displaying
<?php
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
?>
<tr><td><?=$row["id"]?></td>
<td><?=$row["game"]?></td>
<td><?=$row["server"]?></td>
<td><?=$row["datetimepicker1"]?></td>
<td><?=$row["et"]?></td>
<td><?=$row["sc"]?></td>
<td><?=$row["ss"]?></td>
<td><?=$row["ec"]?></td>
<td><?=$row["es"]?></td>
<td><?=$row["attending"]?></span></td>
<td><p data-placement="top" data-toggle="tooltip" title="Delete">
<button class="btn btn-danger btn-xs" data-title="Delete" data-toggle="modal" >
<span class="glyphicon glyphicon-trash"></span></button></p></td>
<?php }
} else { ?>
<td colspan="5">0 results</td>
<?php } ?>
I've also tried
mysqli_set_charset($con,"utf8");
but nothing seems to work I've tried a lot of the charset types but still it remains as a ?
.