Sorry to ask this question, Im sure this question has been asked, but because I dont know the name of this symbol ' I cant really search.
The problem, I have a mysql database with text in it those text might have something like this (Hi I've no idea how to fix this). Once I query that text using php and echo on html, it display this.
Hi I�ve no idea how to fix this
Code:
$sql = mysqli_query($connection,"SELECT Something FROM something WHERE ID = '1';");
$row = mysqli_fetch_object($sql);
$description = $row->DESCRIPTION;
<p style="margin-top: 3%">
<?php echo$description?>
</p>