I Have to echo a statement which contains the word "Financi�le" , but this not the actual word i need..
I need "Financiële"
please help me how to get this word in php....
I Have to echo a statement which contains the word "Financi�le" , but this not the actual word i need..
I need "Financiële"
please help me how to get this word in php....
In editor, change encoding to UTF-8, add to your html:
<meta charset="UTF-8">
And update the statement source to contain the correct format - "Financial" and use the UTF-8 Encoding/Collation. For MySQL, see How to change the default collation of a database? here on Stack Overflow.
That should solve your problem.
Like this:
Financiëple
Answer on comment
Yes, you can, if you set a header to
Content-Type: text/html; charset=ISO-8859-1\r\n
Extra information on sending email with PHP and HTML/style format: