• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[Php] scandinavian letters

4Muki4

HOROHOROHORO
Joined
May 1, 2012
Messages
757
Reaction score
70
Hello,

i'm trying to learn php but i can use scandinavian letters and result is
Code:
suomalaisilla nettisivuilla tarvitaan ääkkösiä!
my code is
Code:
<?php
print 'suomalaisilla nettisivuilla tarvitaan ääkkösiä!';
?>
i don't use mysql database or anything just notepad++ and trying to learn coding thanks

~Muki
 
you need to use UTF-8. In notepad you can convert it under encoding or something.
And you need " <metacharset="UTF-8"> " in ur head tag.
 
You can also use HTML codes.
ä - &auml;
Ä - &Auml;
å - &aring;
Å - &Aring;
ö - &ouml;
Ö - &Ouml;
seems to be kinda messy and hard to use compared to @vTune one but thanks anyway
you need to use UTF-8. In notepad you can convert it under encoding or something.
And you need " <metacharset="UTF-8"> " in ur head tag.
Thanks a lot using your method instead html
 
Back
Top