Out o Space
New member
-- 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, ?...
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 ($row = mysql_fetch_array($result))
echo $row['Description'];
Thanks for your help.