I have a column in a database called Name
I'm doing an echo() on this column to show the value (simple knowledge)
When doing an var_dump on the mySQL row, I'm shown the following
["Name"]=> string(10) "Marko Baša"
If I go ahead and do echo $Name
I'm shown the following
Marko Baa
But then, If I go ahead and do a utf8_encode
arround it, it appears a little better
Marko Baša
How could I get it to display like so
Marko Basa