php - Greek text writing problem -


I am working on php in my index.php page I have included the correct .php Greek text in right.php Includes index.php in html header Greek text is not displaying correctly when I open the right.php file in dreamweaver and save the page, it warns about the text. What can I do to solve it? Because right.php contains general content that is used in many pages.

All of your pages' content types are most likely to save the text in Latin 1 format / Are trying to display, which does not support the characters you are trying to display.

The most sensible thing is that everything is converted to UTF-8. If you are editing text manually, make sure your text editor (i.e. Dreamweaver) is set to save the file as UTF-8 and then make sure that your page has the following meta tag

  & lt; Meta http-equiv = "content-type" content = "text / html; charset = utf-8" />    

Comments