Hey guys,
viewtopic.php?f=2&t=111089
just posting this here in case it was in the wrong category
diamond question mark character set
Moderator: General Moderators
Re: diamond question mark character set
Add the musql_query line below to your database connection. This is one possible solution. If this doesn't work, look for other places where UTF8 isn't specified, for instance, in includes.
Code: Select all
$dbcnx = @mysql_connect('localhost', 'root', '');
mysql_query("set names 'utf8'");
if (!$dbcnx) {