this is the string I have in my MySQL db, (TEXT),
Hello 'muffin'
the output when doing
$query = mysql_query("SELECT * FROM articles");
while ($row=mysql_fetch_array($query)) {
<?php echo $row['text']; ?>
}
is
Hello �muffin�
How do I stop this, I want it to output the quotes normally? :( I have made sure it is not an issue with the font, therefore it must be an issue with MySQL.