Cannot display Greek characters .mdb file (PHP & ODBC)

后端 未结 2 2041
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-25 11:56

I am having problems displaying text from a column in an MS Access 2007 table which is in Greek. I am using PHP and $dbc = @odbc_pconnect(\"Driver={Microsoft Access Driver

2条回答
  •  孤独总比滥情好
    2021-01-25 12:24

    .mdb format, being a Microsoft's invention does not use Unicode, but rather one of Windows- codepages. Check which one is that you use for Greek, and use iconv to translate between encodings.

提交回复
热议问题