-- So I have a value with special character, ½ to be exact..
It shows nicely when logged onto phpmyadmin, but when trying to echo data from the database It returns, ?...
[PHP]
$sql = "select * from `" . DB_TABLE . "`limit 0,100";
$result = mysql_query($sql) or die (mysql_error() . "\n");
while...