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 (*.mdb)};Dbq=$mdbFilename", $user, $pass); to read from a local .mdb file. I can successfully read the rest of the data in the DB which is in Latin characters. Greek characters get displayed as when I echo the results. The html charset is properly set to utf-8. I've tried using utf8_encode with no luck. I've been searching the web for some time no but could not figure it out.

Any help would be appreciated.

Kyris

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

.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.

link|improve this answer
thanks man. I've actually used iconv to convert from Windows-1252 because I thought that was the default for .mdb files but I didn't think to look for a different codepage for Greek characters. For the record, for Greek it's Windows-1253 and iconv() did the job. Thanks again! – Kyris Feb 3 at 21:27
Awesome! I spent some time on figuring it once :) – Mchl Feb 3 at 21:29
Hey mate. I've got another related problem. While the results were properly displayed on my local machine (using XAMPP), when I uploaded the website on a Windows hosting plan with GoDaddy, the characters were again not shown correctly. Apparently iconv() does convert them to UTF-8 (because if I don't use the function they are shown differently) but this time question marks are displayed (without the black background color). What could be the problem? Perhaps something with my hosting plan? – Kyris Feb 6 at 20:12
Do you have touble with unicode characters coming from other sources too, or only those from database? – Mchl Feb 6 at 20:32
nope! only for the values from the database. the rest of the page is mainly in greek, anyway.. – Kyris Feb 6 at 21:22
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.