I have a Mysql table with column State - the states are from across Europe - and the table and columns are in utf8_unicode_ci.
When I call the database I use
mysql_select_db($database_WTF, $WTF);
mysql_query('SET NAMES utf8');
$query_Recordset1 = "SELECT *
FROM newmeets
WHERE newmeets.`State` IS NOT NULL
AND newmeets.`State` != ''
ORDER BY newmeets.`State` ASC ";
I then run it though this simple loop
mysql_select_db($database_WTF, $WTF);
mysql_query('SET NAMES utf8');
$query_Recordset1 = "SELECT *
FROM newmeets
WHERE newmeets.`State` IS NOT NULL
AND newmeets.`State` != ''
ORDER BY newmeets.`State` ASC ";
$LastState = "";
do {
echo
var_dump($LastState == $row_Recordset1['State']);
echo $row_Recordset1['State'];
$LastState = $row_Recordset1['State'];
var_dump($LastState == $row_Recordset1['State']);
echo "<hr>";
} while ($row_Recordset1 = mysql_fetch_assoc($Recordset1));
The first time when it hits a new value as expected I get:
boolean false
BRUSSELS
boolean true
The next time I get:
boolean true
BRUSSELS
boolean true
Much as I would expect.
The problem comes when it hits non latin characters when each pass produces:
boolean false
Baden-Württember
boolean true
When I set them to be equal they are, and then when the next record is pulled (and each record has been entered identically) it fails, this is when I have used the same encoding, I actually need it to recognise they are the same even if the characters are entered differently.
Regardless of what is happening I have tried utf8_encode and Normalizer::normalize to get a true result from the comparison so I can use this in a control structure (e.g. if you've seen it last time don't print it this time) but it fails.

SHOW CREATE TABLE newmeetsin your question? It may well be that the charsets and collations on the table and columns are bogus. – Charles Dec 28 '12 at 10:59newmeets-- CREATE TABLE IF NOT EXISTSnewmeets(IDint(11) NOT NULL auto_increment,Countrytext collate utf8_unicode_ci NOT NULL,Statevarchar(50) collate utf8_unicode_ci NOT NULL, PRIMARY KEY (ID) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=110 ; – Sapfizz Dec 28 '12 at 15:41