-2

I am developing a multilanguage website but I have a big problem with Russian language. I need to create a php page with an html form to save data into a mysql db. I'm writing this code with Notepad++ and when I paste russian word into my code I display "???" instead of my russian word:

e.g. I should have

 ...
    Type of Transaction:
    <select name="typetranscation">
      <option value="Аренда">Аренда</option>
      <option value="Продажа">Продажа</option>
    </select><br><br>
   ...

But, in fact, I have:

Type of Transaction:
        <select name="typetransaction">
          <option value="?????">?????</option>
          <option value="?????">?????</option>
        </select><br><br>

What Can I do to fix it? Thanks!

Marci
  • 197
  • 1
  • 2
  • 19

2 Answers2

1

Just set the correct charset in head tag of your page

<head>
  <meta charset="UTF-8">
  .
  .
</head>
DespeiL
  • 993
  • 9
  • 28
0

Click encoding and choose UTF-8.

Michael
  • 405
  • 4
  • 10