I'm trying to print accents, through a script, not a website, but they doesn't print correctly. What I tried :
<?php
header('Content-Type: text/html; charset=iso8859-15');
echo "éè";
?>
And it gives :
ΘΦ
I'm executing this sample of code from a Command Prompt on Windows. How can I fix it ?
Thanks in advance