Hi there.
Got my documents set up in utf-8. and html meta tag as usual.
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
If I write special characters like "á" OR "Ü" directly into the code, theyre displayed right
if i load the string from my database though
$query=mysqli_query($link, 'SELECT * FROM services WHERE sid = 1;');
while($row=mysqli_fetch_assoc($query)){
echo 'name: '.$row['name'];
}
it looks like
I chose "utf-8_general_ci" in phpMyAdmin when i created the database.
Does anyone see the problem? I've been gooling around but haven't pretty much what I'm looking for.