One of my fields (which is latin1_swedish_ci) seems to show the euro symbol in PHPMYADMIN inside the field.
However, when I try to repeat it in the input box on my website in the form, it appears as a question mark in firefox.
Here is the html / php:
$sql = mysql_query("select * from `settings`"); while ($row = mysql_fetch_assoc($sql)) $setting[$row['field']] = htmlspecialchars($row['value'], ENT_QUOTES); <input type="text" name="currency_symbol" id="currency_symbol" size="50" value="<?php echo $setting['currency_symbol']; ?>" />
I use the following meta tag on the page:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
I tried using utf8_general_ci for the field, but I get the same result.
scarhand
source share